summaryrefslogtreecommitdiff
path: root/service/test/test_tags.py
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-18 19:14:55 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-18 19:15:05 -0300
commit2c6fe6e4cca9c39287c0c9a88079a60078711e97 (patch)
tree9cd73392e3fc5646dca87bbefc758c9c975f4558 /service/test/test_tags.py
parent3cc37ad518706c7abe61d3d3cd7b91798901cc5b (diff)
Fixed pep8 errors on service
Diffstat (limited to 'service/test/test_tags.py')
-rw-r--r--service/test/test_tags.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/service/test/test_tags.py b/service/test/test_tags.py
index 9c57ee07..52d2f069 100644
--- a/service/test/test_tags.py
+++ b/service/test/test_tags.py
@@ -14,16 +14,16 @@ class TagsTestCase(unittest.TestCase):
def test_add_tag_to_collection(self):
tag_collection = Tags()
tag_collection.add('test')
- self.assertEqual(len(tag_collection), len(Tags())+1)
+ self.assertEqual(len(tag_collection), len(Tags()) + 1)
tag_collection.add('test2')
- self.assertEqual(len(tag_collection), len(Tags())+2)
+ self.assertEqual(len(tag_collection), len(Tags()) + 2)
def test_no_tag_duplication(self):
tag_collection = Tags()
tag_collection.add('test')
- self.assertEqual(len(tag_collection), len(Tags())+1)
+ self.assertEqual(len(tag_collection), len(Tags()) + 1)
tag_collection.add('test')
- self.assertEqual(len(tag_collection), len(Tags())+1)
+ self.assertEqual(len(tag_collection), len(Tags()) + 1)
def test_find_tag_on_collection(self):
tag_collection = Tags()