Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit c4da4c2

Browse files
Fixed style violations
1 parent 1422dc8 commit c4da4c2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/test_s3.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import StringIO
44
import sys
5-
65
import time
76

87
from nose import tools
@@ -155,11 +154,11 @@ def mockExists():
155154
content = self._storage.get_content("/FOO")
156155

157156
waitTime = time.time() - startTime
158-
assert waitTime >= 0.1, "Waiting time was less than %sms " \
159-
"(actual : %sms)" % \
160-
(0.1 * 1000, waitTime * 1000)
161-
assert content == "Foo bar", "expected : %s; actual: %s" % \
162-
("Foo bar", content)
157+
assert waitTime >= 0.1, ("Waiting time was less than %sms "
158+
"(actual : %sms)" %
159+
(0.1 * 1000, waitTime * 1000))
160+
assert content == "Foo bar", ("expected : %s; actual: %s" %
161+
("Foo bar", content))
163162

164163
@tools.raises(exceptions.FileNotFoundError)
165164
def test_too_many_read_retries(self):

0 commit comments

Comments
 (0)