Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatia committed Nov 14, 2023
1 parent 39e1a84 commit 2e64d6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/api/c_api/query_plan/test/unit_capi_query_plan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ TEST_CASE_METHOD(
CHECK(json_plan["TileDB Query Plan"]["Query.Strategy.Name"] == "DenseReader");
CHECK(
json_plan["TileDB Query Plan"]["Query.Attributes"] ==
std::vector({"a2", "a1"}));
std::vector({"a1", "a2"}));
CHECK(
json_plan["TileDB Query Plan"]["Query.Dimensions"] ==
std::vector({"dim_1", "dim_2"}));
Expand Down Expand Up @@ -370,7 +370,7 @@ TEST_CASE_METHOD(
"GlobalOrderWriter");
CHECK(
json_plan["TileDB Query Plan"]["Query.Attributes"] ==
std::vector({"b", "a", "__coords"}));
std::vector({"__coords", "a", "b"}));
CHECK(
json_plan["TileDB Query Plan"]["Query.Dimensions"] ==
std::vector<std::string>());
Expand Down

0 comments on commit 2e64d6b

Please sign in to comment.