File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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
3534TEST (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\x1F world" ), " hello%1Fworld" );
8582 EXPECT_EQ (EncodeString (" " ), " " );
8683}
You can’t perform that action at this time.
0 commit comments