Skip to content

Commit

Permalink
fix pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 29, 2014
1 parent 7910d40 commit 00b1ac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/test/util/steps.py
Expand Up @@ -247,9 +247,9 @@ def check(result):
for pn in self.exp_missing_properties:
self.assertFalse(self.properties.hasProperty(pn),
"unexpected property '%s'" % pn)
for log, contents in self.exp_logfiles.iteritems():
for l, contents in self.exp_logfiles.iteritems():
self.assertEqual(
self.step_status.logs[log].stdout, contents, "log '%s' contents" % log)
self.step_status.logs[l].stdout, contents, "log '%s' contents" % l)
self.step_status.setHidden.assert_called_once_with(self.exp_hidden)
d.addCallback(check)
return d
Expand Down

0 comments on commit 00b1ac6

Please sign in to comment.