Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/modules/cassandra/src/cassandra-container.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down