This is an automated email from the ASF dual-hosted git repository.
singhpk234 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 1bf44d9fed Build: Fix typo in variable name spaceSeparatedPlanId
(#15158)
1bf44d9fed is described below
commit 1bf44d9fed8b99dd73115ec31659266248cbb363
Author: Resort_Annex <[email protected]>
AuthorDate: Wed Jan 28 02:28:26 2026 +0900
Build: Fix typo in variable name spaceSeparatedPlanId (#15158)
---
core/src/test/java/org/apache/iceberg/rest/TestResourcePaths.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/src/test/java/org/apache/iceberg/rest/TestResourcePaths.java
b/core/src/test/java/org/apache/iceberg/rest/TestResourcePaths.java
index 1a1018be95..f40b1302f9 100644
--- a/core/src/test/java/org/apache/iceberg/rest/TestResourcePaths.java
+++ b/core/src/test/java/org/apache/iceberg/rest/TestResourcePaths.java
@@ -319,14 +319,14 @@ public class TestResourcePaths {
.isEqualTo("v1/namespaces/test_namespace/tables/test_table/plan/plan-abc-123");
// The planId contains a space which needs to be encoded
- String spaceSeperatedPlanId = "plan with spaces";
+ String spaceSeparatedPlanId = "plan with spaces";
// The expected encoded version of the planId
String encodedPlanId = "plan+with+spaces";
- assertThat(withPrefix.plan(tableId, spaceSeperatedPlanId))
+ assertThat(withPrefix.plan(tableId, spaceSeparatedPlanId))
.isEqualTo(
"v1/ws/catalog/namespaces/test_namespace/tables/test_table/plan/"
+ encodedPlanId);
- assertThat(withoutPrefix.plan(tableId, spaceSeperatedPlanId))
+ assertThat(withoutPrefix.plan(tableId, spaceSeparatedPlanId))
.isEqualTo("v1/namespaces/test_namespace/tables/test_table/plan/" +
encodedPlanId);
// Test with different identifiers