From 5f4d36b5b25602586181a0ad25c0fa825cc409b3 Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Fri, 7 Nov 2014 11:38:21 +0000 Subject: fix test greater than --- exts/pip_find_deps_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exts/pip_find_deps_tests.py b/exts/pip_find_deps_tests.py index 4e8f1b0..8302c33 100755 --- a/exts/pip_find_deps_tests.py +++ b/exts/pip_find_deps_tests.py @@ -80,8 +80,7 @@ class ConflictDetectionTests(unittest.TestCase): self.run_conflict_test(requirements, [expected_conflict]) # ('>', 0.1) conflicts with ('==', '0.1') - #self.run_conflict_test(reverse(requirements), reverse(expected_conflicts)) - #self.run_conflict_test(reverse(requirements), [expected_conflict]) + self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)]) def test_eqs_nt_eqs(self): requirements = list(parse_requirements(['a == 0.1', 'a != 0.1'])) -- cgit v1.2.1