Skip to content

Commit

Permalink
linux push
Browse files Browse the repository at this point in the history
  • Loading branch information
discivigour committed Jul 31, 2024
1 parent 5530e70 commit 2a18f5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void testSerializeTable() throws Exception {
public void testGetDataTableLocation() {
Path path =
((AbstractCatalog) catalog)
.getDataTableLocation(Identifier.create("test_db", "test_table$branch_a"));
.getDataTableLocation(Identifier.create("test_db", "test_table$branch_a1"));
assertThat(path.toString())
.isEqualTo(
new File(
Expand All @@ -144,7 +144,7 @@ public void testGetDataTableLocation() {
+ "branch"
+ File.separator
+ BranchManager.BRANCH_PREFIX
+ "a")
+ "a1")
.toString());
}
}

0 comments on commit 2a18f5e

Please sign in to comment.