summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexts/pip_find_deps_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/exts/pip_find_deps_tests.py b/exts/pip_find_deps_tests.py
index b513ec0..7ace976 100755
--- a/exts/pip_find_deps_tests.py
+++ b/exts/pip_find_deps_tests.py
@@ -117,7 +117,9 @@ class ConflictDetectionTests(unittest.TestCase):
('>=', parse_version('0.2')))
# ('<=', 0.1) conflicts with ('>=', 0.2)
- #self.run_conflict_test(requirements, [expected_conflict])
+ self.run_conflict_test(requirements, [expected_conflict])
+
+ self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])
if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(ConflictDetectionTests)