Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Tardy authored and Mikhail Sobolev committed May 25, 2015
1 parent ca8ebbe commit 3a32ace
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions master/buildbot/test/unit/test_changes_filter.py
Expand Up @@ -24,19 +24,20 @@

class Change(State):

def __init__(self, **kw):
State.__init__(self, **kw)
# change.properties is a IProperties
props = Properties()
props.update(self.properties, "test")
self.properties = props
project = ''
repository = ''
branch = ''
category = ''
codebase = ''
properties = {}

def __init__(self, **kw):
State.__init__(self, **kw)
# change.properties is a IProperties
props = Properties()
props.update(self.properties, "test")
self.properties = props


class ChangeFilter(unittest.TestCase):

Expand Down

0 comments on commit 3a32ace

Please sign in to comment.