Skip to content

Commit f1685be

Browse files
committed
fresh
1 parent 1b17be0 commit f1685be

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/iceberg/test/rest_util_test.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ TEST(RestUtilTest, TrimTrailingSlash) {
3131
EXPECT_EQ(TrimTrailingSlash("https://foo////"), "https://foo");
3232
}
3333

34-
// Ported from Java TestRESTUtil.testRoundTripUrlEncodeDecodeNamespace
3534
TEST(RestUtilTest, RoundTripUrlEncodeDecodeNamespace) {
3635
// {"dogs"}
3736
EXPECT_EQ(EncodeNamespaceForUrl(Namespace{.levels = {"dogs"}}), "dogs");
@@ -79,8 +78,6 @@ TEST(RestUtilTest, EncodeString) {
7978
EXPECT_EQ(EncodeString("path/to/file"), "path%2Fto%2Ffile");
8079
EXPECT_EQ(EncodeString("key=value&foo=bar"), "key%3Dvalue%26foo%3Dbar");
8180
EXPECT_EQ(EncodeString("100%"), "100%25");
82-
83-
// ASCII Unit Separator (0x1F) - important for Iceberg namespaces
8481
EXPECT_EQ(EncodeString("hello\x1Fworld"), "hello%1Fworld");
8582
EXPECT_EQ(EncodeString(""), "");
8683
}

0 commit comments

Comments
 (0)