Skip to content

Commit

Permalink
fix failure
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Jan 17, 2025
1 parent 67be4a0 commit c4b42b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1094,9 +1094,9 @@ public void parquetWithNonUniqueFieldIds() {
try {
table.select();
failBecauseExceptionWasNotThrown(IllegalStateException.class);
} catch (IllegalStateException e) {
} catch (IllegalArgumentException e) {
assertThat(e).hasMessageContaining(
"Parquet columns can't be unambigously mapped. 31337 -> Bar has multiple paths [Foo], [Bar]");
"Parquet columns can't be unambigously mapped. Bar -> 31337 has multiple paths [Foo], [Bar]");
}
}
}
Expand Down

0 comments on commit c4b42b4

Please sign in to comment.