diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db2ddda0..9c3f3e72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] - nats_version: ["v2.10.29", "v2.11.6", "main"] + nats_version: ["v2.10.29", "v2.11.8", "main"] include: - nats_version: "main" continue-on-error: true diff --git a/tests/test_js.py b/tests/test_js.py index 4735cfe2..e5a1ee18 100644 --- a/tests/test_js.py +++ b/tests/test_js.py @@ -4057,12 +4057,10 @@ async def error_handler(e): "TEST_LIST", config=nats.js.api.ObjectStoreConfig(description="listing", ), ) - await asyncio.gather( - obs.put("A", b"AAA"), - obs.put("B", b"BBB"), - obs.put("C", b"CCC"), - obs.put("D", b"DDD"), - ) + await obs.put("A", b"AAA") + await obs.put("B", b"BBB") + await obs.put("C", b"CCC") + await obs.put("D", b"DDD") entries = await obs.list() assert len(entries) == 4 assert entries[0].name == "A"