Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Bär <[email protected]>
  • Loading branch information
kaklakariada and redcatbear authored Nov 8, 2023
1 parent f6b3de3 commit 3e69b1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/changes/changes_2.7.7.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloud Storage Extension 2.7.7, released 2023-11-08

Code name: Refactoring of Extension
Code name: Using shared integration tests

## Summary

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ protected void assertScriptsWork() {
table().row(1, "a").row(2, "b").row(3, "c").matches(TypeMatchMode.NO_JAVA_TYPE_CHECK));
}
} catch (final SQLException exception) {
throw new IllegalStateException("Failed to run scripts: " + exception.getMessage(), exception);
throw new AssertionError("Failed to assert scripts execution: " + exception.getMessage(), exception);
} finally {
schema.drop();
s3setup.deleteBucket(bucket);
Expand Down

0 comments on commit 3e69b1e

Please sign in to comment.