Skip to content

Commit

Permalink
Fix syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban authored and Mikhail Sobolev committed May 18, 2015
1 parent e0a9da9 commit 491df37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/test/unit/test_status_builder.py
Expand Up @@ -61,7 +61,7 @@ def test_matchesAnyTag_with_match(self):
Return True when at least one of the requested tags match.
"""
sut = self.makeBuilderStatus()
sut.tags = set('one', 'two')
sut.tags = set(('one', 'two'))

self.assertTrue(sut.matchesAnyTag(set(('two',))))
self.assertTrue(sut.matchesAnyTag(set(('two', 'one'))))

0 comments on commit 491df37

Please sign in to comment.