Skip to content

Commit

Permalink
Fix pep8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
shin- committed Feb 16, 2015
1 parent 35b694d commit 7084802
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1132,8 +1132,8 @@ def runTest(self):

# Containers are still there
retrieved = [
x for x in containers if x['Id'].startswith(container1_id)
or x['Id'].startswith(container2_id)
x for x in containers if x['Id'].startswith(container1_id) or
x['Id'].startswith(container2_id)
]
self.assertEqual(len(retrieved), 2)

Expand Down

0 comments on commit 7084802

Please sign in to comment.