Skip to content

Commit

Permalink
fix for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Dechaume committed Mar 16, 2015
1 parent 0eb259a commit e38c3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_parse_rule(self):

rule = Rule('', rule_def)

self.assertEqual(['{foo}'], rule.ctx_rules.keys())
self.assertEqual(['{foo}'], list(rule.ctx_rules.keys()))
self.assertRuleEqual(expected_rule, rule.base_rule)
self.assertRuleEqual(expected_rule['{foo}'], rule.ctx_rules['{foo}'])

Expand Down

0 comments on commit e38c3ea

Please sign in to comment.