Skip to content

Commit

Permalink
WIP: Update unit test of Firebird backend
Browse files Browse the repository at this point in the history
  • Loading branch information
zann1x committed May 4, 2022
1 parent cf60325 commit 779b973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/firebird/test-firebird.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ TEST_CASE("Firebird dynamic binding", "[firebird][dynamic]")
CHECK(r.get_properties(1).get_name() == "MSG");
CHECK(r.get_properties(2).get_name() == "NTEST");

CHECK(r.get_properties(0).get_data_type() == dt_integer);
CHECK(r.get_properties(0).get_data_type() == dt_int32);
CHECK(r.get_properties(1).get_data_type() == dt_string);
CHECK(r.get_properties(2).get_data_type() == dt_double);

Expand All @@ -781,7 +781,7 @@ TEST_CASE("Firebird dynamic binding", "[firebird][dynamic]")
CHECK(r.get_properties("MSG").get_name() == "MSG");
CHECK(r.get_properties("NTEST").get_name() == "NTEST");

CHECK(r.get_properties("ID").get_data_type() == dt_integer);
CHECK(r.get_properties("ID").get_data_type() == dt_int32);
CHECK(r.get_properties("MSG").get_data_type() == dt_string);
CHECK(r.get_properties("NTEST").get_data_type() == dt_double);

Expand Down

0 comments on commit 779b973

Please sign in to comment.