Skip to content

Commit 56ebfb2

Browse files
committed
disable test
1 parent ceedea3 commit 56ebfb2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/iceberg/test/rest_catalog_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class RestCatalogTest : public ::testing::Test {
6161
RestCatalogConfig config_;
6262
};
6363

64-
TEST_F(RestCatalogTest, MakeCatalogSuccess) {
64+
TEST_F(RestCatalogTest, DISABLED_MakeCatalogSuccess) {
6565
auto catalog_result = RestCatalog::Make(config_);
6666
EXPECT_THAT(catalog_result, IsOk());
6767

@@ -82,7 +82,7 @@ TEST_F(RestCatalogTest, DISABLED_MakeCatalogEmptyUri) {
8282
EXPECT_THAT(catalog_result, HasErrorMessage("uri"));
8383
}
8484

85-
TEST_F(RestCatalogTest, MakeCatalogWithCustomProperties) {
85+
TEST_F(RestCatalogTest, DISABLED_MakeCatalogWithCustomProperties) {
8686
RestCatalogConfig custom_config = config_;
8787
custom_config
8888
.Set(RestCatalogConfig::Entry<std::string>{"custom_prop", ""},
@@ -93,7 +93,7 @@ TEST_F(RestCatalogTest, MakeCatalogWithCustomProperties) {
9393
EXPECT_THAT(catalog_result, IsOk());
9494
}
9595

96-
TEST_F(RestCatalogTest, ListNamespaces) {
96+
TEST_F(RestCatalogTest, DISABLED_ListNamespaces) {
9797
auto catalog_result = RestCatalog::Make(config_);
9898
ASSERT_THAT(catalog_result, IsOk());
9999
auto& catalog = catalog_result.value();

0 commit comments

Comments
 (0)