Skip to content

Commit

Permalink
(dkriti/jebene) edited to make tests pass on 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dkriti committed May 26, 2015
1 parent 6cc26b1 commit 7d55ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/variant_caller_transforms/common_tags_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_get_matching_tags_regex(self):

expected_tags = OrderedDict(sorted({"JQ_MT_GT": "0/1", "JQ_VS_GT": "0/0"}.items()))
self.assertEquals(expected_tags, actual_tags)
self.assertEquals(["JQ_MT_GT", "JQ_VS_GT"], actual_tags.keys())
self.assertEquals(["JQ_MT_GT", "JQ_VS_GT"], list(actual_tags.keys()))

def test_get_matching_tags_regexSuffix(self):
format_tags = OrderedDict(sorted({"JQ_MT_DP": "32", "JQ_GT_FOO": "bar", "JQ_MT_GT": "0/1", "JQ_VS_GT": "0/0"}.items()))
Expand All @@ -101,7 +101,7 @@ def test_get_matching_tags_regexSuffix(self):

expected_tags = OrderedDict(sorted({"JQ_MT_GT": "0/1", "JQ_VS_GT": "0/0"}.items()))
self.assertEquals(expected_tags, actual_tags)
self.assertEquals(["JQ_MT_GT", "JQ_VS_GT"], actual_tags.keys())
self.assertEquals(["JQ_MT_GT", "JQ_VS_GT"], list(actual_tags.keys()))

def test_get_matching_tags_regexOnlyJacquard(self):
format_tags = OrderedDict(sorted({"JQ_SK_GT": "0/1", "GT": "0/1"}.items()))
Expand Down

0 comments on commit 7d55ff7

Please sign in to comment.