From 43d598d9519b7fd5e9b19803c02f6898bddfaf2e Mon Sep 17 00:00:00 2001 From: Jeff Glass Date: Tue, 28 Feb 2023 07:21:10 -0600 Subject: [PATCH] Fix Failing `test_multiple_async` (#1237) --- pyscriptjs/tests/integration/test_async.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyscriptjs/tests/integration/test_async.py b/pyscriptjs/tests/integration/test_async.py index 2771f2c9..7cc00739 100644 --- a/pyscriptjs/tests/integration/test_async.py +++ b/pyscriptjs/tests/integration/test_async.py @@ -80,9 +80,7 @@ class TestAsync(PyScriptTest): ) self.wait_for_console("b func done") assert self.console.log.lines[0] == self.PY_COMPLETE - # We are getting some deprecation warnings from pyodide, so we - # need to skip the first 2 lines - assert self.console.log.lines[3:] == [ + assert self.console.log.lines[1:] == [ "A 0", "B 0", "A 1",