File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,9 +116,9 @@ async def test_simple(sync_fix):
116
116
117
117
118
118
# In pytest, ERROR status occurs when an exception is raised in fixture code.
119
- # The trouble is our async fixtures must be run whithin a trio context, hence
119
+ # The trouble is our async fixtures must be run within a trio context, hence
120
120
# they are actually run just before the test, providing no way to make the
121
- # difference between an exception comming from the real test or from an
121
+ # difference between an exception coming from the real test or from an
122
122
# async fixture...
123
123
@pytest .mark .xfail (reason = 'Not implemented yet' )
124
124
def test_raise_in_async_fixture_cause_pytest_error (testdir ):
@@ -133,7 +133,7 @@ async def fix1():
133
133
134
134
@pytest.mark.trio
135
135
async def test_base(fix1):
136
- pass # Crash should have occures before arriving here
136
+ pass # Crash should have occurred before arriving here
137
137
"""
138
138
)
139
139
You can’t perform that action at this time.
0 commit comments