diff options
author | Patrick Maia and Victor Shyba <pixelated-team+pmaia+vshyba@thoughtworks.com> | 2014-09-05 23:35:22 +0000 |
---|---|---|
committer | Patrick Maia <pmaia@thoughtworks.com> | 2014-09-05 23:35:22 +0000 |
commit | 01f4ba64576a21d68ce79acbd8cefd0f2f5dc375 (patch) | |
tree | 36a32871e2ea6d891b7354df2f042f003a854e29 /service/test | |
parent | 3c79a54ab332e15f31a4a57a4a9baabf4b62e26a (diff) |
#51 - uses list every time we need to convert to json
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/adapter/test_tag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/adapter/test_tag.py b/service/test/adapter/test_tag.py index 1f0478d3..85887d37 100644 --- a/service/test/adapter/test_tag.py +++ b/service/test/adapter/test_tag.py @@ -39,7 +39,7 @@ class TestTag(unittest.TestCase): def test_as_dict_puts_all_tag_attributes_in_the_returning_dict(self): tag = Tag('some_tag', default=True) tag.counts = {'total': 0, 'read': 0, 'starred': 0, 'replied': 0} - tag.mails = set([1, 2, 3]) + tag.mails = [1, 2, 3] tag_dict = tag.as_dict() |