Commit a07bcbef authored by Paul Brown's avatar Paul Brown

fix pull request #729 python 3 compatibility

parent 1bbe9c3a
...@@ -386,7 +386,7 @@ def test_column_filters(): ...@@ -386,7 +386,7 @@ def test_column_filters():
'string_field': 'Test Filter #2', 'string_field': 'Test Filter #2',
}) })
eq_(view._filter_groups.keys(), [u'Test Filter #1', u'Test Filter #2']) eq_(list(view._filter_groups.keys()), [u'Test Filter #1', u'Test Filter #2'])
# Fill DB # Fill DB
model1_obj1 = Model1('test1_val_1', 'test2_val_1', bool_field=True) model1_obj1 = Model1('test1_val_1', 'test2_val_1', bool_field=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment