Skip to content

Commit

Permalink
Make test case work across all DB backends
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl committed Aug 26, 2024
1 parent 5f5702e commit ea1739e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/common-tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -3658,8 +3658,8 @@ TEST_CASE_METHOD(common_tests, "Basic logging support", "[core][logging]")
{
id = 5;
name = "alice";
stmt.exchange(use(name));
stmt.exchange(use(id));
stmt.exchange(use(name, "name"));
stmt.exchange(use(id, "id"));
stmt.define_and_bind();
stmt.execute(true);
stmt.bind_clean_up();
Expand All @@ -3669,8 +3669,8 @@ TEST_CASE_METHOD(common_tests, "Basic logging support", "[core][logging]")
{
id = 42;
name = "bob";
stmt.exchange(use(name));
stmt.exchange(use(id));
stmt.exchange(use(name, "name"));
stmt.exchange(use(id, "id"));
stmt.define_and_bind();
stmt.execute(true);
stmt.bind_clean_up();
Expand Down

0 comments on commit ea1739e

Please sign in to comment.