Skip to content

Commit d981efb

Browse files
committed
1
1 parent e25ff49 commit d981efb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/iceberg/test/rest_json_internal_test.cc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -770,8 +770,8 @@ INSTANTIATE_TEST_SUITE_P(
770770
.test_name = "FullConfig",
771771
.expected_json_str =
772772
R"({"defaults":{"warehouse":"s3://bucket/warehouse"},"overrides":{"clients":"5"}})",
773-
.model = {.overrides = {{"clients", "5"}},
774-
.defaults = {{"warehouse", "s3://bucket/warehouse"}}}},
773+
.model = {.defaults = {{"warehouse", "s3://bucket/warehouse"}},
774+
.overrides = {{"clients", "5"}}}},
775775
// Only defaults
776776
CatalogConfigParam{
777777
.test_name = "OnlyDefaults",
@@ -792,8 +792,9 @@ INSTANTIATE_TEST_SUITE_P(
792792
.test_name = "WithEndpoints",
793793
.expected_json_str =
794794
R"({"defaults":{"warehouse":"s3://bucket/warehouse"},"overrides":{"clients":"5"},"endpoints":["GET /v1/config","POST /v1/tables"]})",
795-
.model = {.overrides = {{"clients", "5"}},
796-
.defaults = {{"warehouse", "s3://bucket/warehouse"}},
795+
.model = {.defaults = {{"warehouse", "s3://bucket/warehouse"}},
796+
.overrides = {{"clients", "5"}},
797+
797798
.endpoints = {"GET /v1/config", "POST /v1/tables"}}},
798799
// Only endpoints
799800
CatalogConfigParam{

0 commit comments

Comments
 (0)