Skip to content

Commit

Permalink
Update tests for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Sep 6, 2017
1 parent 83aad85 commit db3644c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_mapping_export(self):
prefix = sys.prefix
if any(platform.win32_ver()):
prefix = os.path.join(prefix, 'Library')
scons = subprocess.check_output(['where', 'scons']).strip()
scons = subprocess.check_output(['where', 'scons.bat']).strip()
else:
scons = subprocess.check_output(['which', 'scons']).strip()
if six.PY3:
Expand Down

0 comments on commit db3644c

Please sign in to comment.