summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-07 11:37:51 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-07 11:37:51 +0000
commit77c7df527018f84fdd6d5dfd98e75d31834e7f62 (patch)
tree6ac809a03a66a6b9c883efe479bb5ffdcf11aa50
parent83bcd8426e223223177928bd685eb247ba02abcf (diff)
downloadimport-77c7df527018f84fdd6d5dfd98e75d31834e7f62.tar.gz
fix test_less_than
-rwxr-xr-xexts/pip_find_deps_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exts/pip_find_deps_tests.py b/exts/pip_find_deps_tests.py
index 4706600..4e8f1b0 100755
--- a/exts/pip_find_deps_tests.py
+++ b/exts/pip_find_deps_tests.py
@@ -69,7 +69,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_conflict]))
+ self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])
def test_greater_than(self):
requirements = list(parse_requirements(['a == 0.1', 'a > 0.1']))