Skip to content

Commit

Permalink
Fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
pombredanne committed Jul 24, 2015
1 parent de34598 commit f790eb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/scancode/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,5 @@ def test_scancode_skip_vcs_files_and_dirs_by_default(self):
scan_result = json.load(res)
# a single test.tst file that is not a VCS file should be listed
assert 1 == scan_result['count']
assert scan_result['results'][0]['location'].endswith('vcs.tgz/vcs/test.txt')
scan_loc = as_posixpath(scan_result['results'][0]['location'])
assert scan_loc.endswith('vcs.tgz/vcs/test.txt')

0 comments on commit f790eb1

Please sign in to comment.