Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
agkyra
Commits
a4ee098f
Commit
a4ee098f
authored
Jul 31, 2015
by
Giorgos Korfiatis
Browse files
Fix get_live_info usage in tests
parent
34f26fcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
test.py
View file @
a4ee098f
...
...
@@ -790,7 +790,8 @@ class AgkyraTest(unittest.TestCase):
handle
.
copy_file
()
self
.
assertIsNotNone
(
handle
.
staged_path
)
live_info
=
localfs_client
.
get_live_info
(
handle
.
fspath
)
live_info
=
localfs_client
.
get_live_info
(
self
.
s
.
settings
,
handle
.
fspath
)
handle
.
check_staged
(
live_info
)
with
open
(
fmissing_path
,
"w"
)
as
f
:
...
...
@@ -806,7 +807,8 @@ class AgkyraTest(unittest.TestCase):
handle
.
check_staged
(
live_info
)
# info of dir
live_info
=
localfs_client
.
get_live_info
(
handle
.
fspath
)
live_info
=
localfs_client
.
get_live_info
(
self
.
s
.
settings
,
handle
.
fspath
)
handle
.
check_staged
(
live_info
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment