Skip to content

Commit cd07b11

Browse files
committed
cleanup for linting
1 parent eaebd84 commit cd07b11

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

testing/test_basic.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ def assert_outcomes(run_result, outcomes):
3030
normalized_outcomes = {
3131
force_plural(name): outcome
3232
for name, outcome in result_outcomes.items()
33-
if force_plural(name) in outcomes # TODO: do we really only want to check the specified outcomes?
33+
# TODO: do we really only want to check the specified outcomes?
34+
if force_plural(name) in outcomes
3435
}
3536

3637
assert normalized_outcomes == outcomes
@@ -437,7 +438,7 @@ async def foo(request):
437438
438439
if request.param == "archie":
439440
yield 42
440-
441+
441442
@pytest_twisted.inlineCallbacks
442443
def test_succeed(foo):
443444
x = yield foo[0]

0 commit comments

Comments
 (0)