From e2451109f7d231410157764c4b277e34cac805b7 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 7 Feb 2016 13:03:28 -0800 Subject: [PATCH] norm slashes for windows --- tests/commands/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/run_test.py b/tests/commands/run_test.py index d4e37f20..d3f4bf15 100644 --- a/tests/commands/run_test.py +++ b/tests/commands/run_test.py @@ -618,4 +618,4 @@ def test_files_running_subdir( '--files', 'foo.py', env=env, ) - assert 'subdir/foo.py' in stdout + assert 'subdir/foo.py'.replace('/', os.sep) in stdout