From 839b890ce3defdb4223a59064eb041a61b0b1584 Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Fri, 3 Oct 2025 09:47:47 +0100 Subject: [PATCH] Add missing await to cassandra test --- packages/modules/cassandra/src/cassandra-container.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/modules/cassandra/src/cassandra-container.test.ts b/packages/modules/cassandra/src/cassandra-container.test.ts index c0bf4ad26..df6d95b72 100644 --- a/packages/modules/cassandra/src/cassandra-container.test.ts +++ b/packages/modules/cassandra/src/cassandra-container.test.ts @@ -101,7 +101,7 @@ describe.sequential("CassandraContainer", { timeout: 240_000 }, () => { // Insert a record const id = "d002cd08-401a-47d6-92d7-bb4204d092f8"; // Fixed UUID for testing const username = "Testy McTesterson"; - client.execute("INSERT INTO test_keyspace.users (id, name) VALUES (?, ?)", [id, username]); + await client.execute("INSERT INTO test_keyspace.users (id, name) VALUES (?, ?)", [id, username]); // Fetch and verify the record const result = await client.execute("SELECT * FROM test_keyspace.users WHERE id = ?", [id], { prepare: true });