Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
cf5aafc5
Commit
cf5aafc5
authored
Jan 12, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix syntax in test debug code.
parent
5f1f8795
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tests/run/initial_file_path.srctree
tests/run/initial_file_path.srctree
+4
-4
No files found.
tests/run/initial_file_path.srctree
View file @
cf5aafc5
...
...
@@ -29,8 +29,8 @@ except ImportError as e:
traceback.print_exc()
def test():
print
"FILE: ", initial_file
print
"PATH: ", initial_path
print
("FILE: ", initial_file)
print
("PATH: ", initial_path)
assert initial_path[0].endswith('my_test_package'), initial_path
assert initial_file.endswith('__init__.py'), initial_file
assert import_error is None, import_error
...
...
@@ -51,8 +51,8 @@ except ImportError as e:
traceback.print_exc()
def test():
print
"FILE: ", initial_file
print
"PATH: ", initial_path
print
("FILE: ", initial_file)
print
("PATH: ", initial_path)
assert initial_path[0].endswith('another'), initial_path
assert initial_file.endswith('__init__.py'), initial_file
assert import_error is None, import_error
...
...
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