Skip to content

Commit 4916211

Browse files
committed
Not sure if this is the intended behaviour but at least it fixes the lint error
that we currently otherwise hit on every single push and PR.
1 parent b6d2a35 commit 4916211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/support/wsgisupp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def called_once(fake):
150150
try:
151151
self.assertTrue(called_once(fake_start_response))
152152
except AssertionError:
153-
if len(fake.calls) == 0:
153+
if len(fake_start_response.calls) == 0:
154154
raise AssertionError("WSGI handler did not respond")
155155
else:
156156
raise AssertionError("WSGI handler responded more than once")

0 commit comments

Comments
 (0)