Skip to content

Commit e1142a5

Browse files
committed
remove async
1 parent c74f660 commit e1142a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_terminal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
# Kill all running terminals after each test to avoid cross-test issues
1515
# with still running terminals.
1616
@pytest.fixture(autouse=True)
17-
async def kill_all(serverapp):
17+
def kill_all(serverapp):
1818
yield
19-
await serverapp.web_app.settings["terminal_manager"].kill_all()
19+
serverapp.web_app.settings["terminal_manager"].kill_all()
2020

2121

2222
@pytest.fixture

0 commit comments

Comments
 (0)