We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaebd84 commit cd07b11Copy full SHA for cd07b11
testing/test_basic.py
@@ -30,7 +30,8 @@ def assert_outcomes(run_result, outcomes):
30
normalized_outcomes = {
31
force_plural(name): outcome
32
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?
+ # TODO: do we really only want to check the specified outcomes?
34
+ if force_plural(name) in outcomes
35
}
36
37
assert normalized_outcomes == outcomes
@@ -437,7 +438,7 @@ async def foo(request):
437
438
439
if request.param == "archie":
440
yield 42
-
441
+
442
@pytest_twisted.inlineCallbacks
443
def test_succeed(foo):
444
x = yield foo[0]
0 commit comments