Commit 5acc5256 authored by Gary Poster's avatar Gary Poster

fix tests for changes

parent e268f1ca
...@@ -1291,7 +1291,8 @@ this is very straightforward. ...@@ -1291,7 +1291,8 @@ this is very straightforward.
... ...
] ]
for path in original_paths: for path in original_paths:
addsitedir(path, known_paths) if path not in known_paths:
addsitedir(path, known_paths)
return known_paths return known_paths
<BLANKLINE> <BLANKLINE>
def original_addsitepackages(known_paths):... def original_addsitepackages(known_paths):...
...@@ -1368,7 +1369,8 @@ call to another text fixture to create. ...@@ -1368,7 +1369,8 @@ call to another text fixture to create.
... ...
] ]
for path in original_paths: for path in original_paths:
addsitedir(path, known_paths) if path not in known_paths:
addsitedir(path, known_paths)
return known_paths return known_paths
<BLANKLINE> <BLANKLINE>
def original_addsitepackages(known_paths):... def original_addsitepackages(known_paths):...
...@@ -1432,7 +1434,8 @@ at that result. ...@@ -1432,7 +1434,8 @@ at that result.
... ...
] ]
for path in original_paths: for path in original_paths:
addsitedir(path, known_paths) if path not in known_paths:
addsitedir(path, known_paths)
return known_paths return known_paths
<BLANKLINE> <BLANKLINE>
def original_addsitepackages(known_paths):... def original_addsitepackages(known_paths):...
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment