Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #3115

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public static RelationalAssert assertThat(Object o) {
}

public static RelationalExceptionAssert assertThrows(ThrowableAssert.ThrowingCallable shouldThrow) {
RelationalException ve = Assertions.catchThrowableOfType(shouldThrow, RelationalException.class);
RelationalException ve = Assertions.catchThrowableOfType(RelationalException.class, shouldThrow);
return new RelationalExceptionAssert(ve);
}

public static SQLExceptionAssert assertThrowsSqlException(ThrowableAssert.ThrowingCallable shouldThrow) {
SQLException se = Assertions.catchThrowableOfType(shouldThrow, SQLException.class);
SQLException se = Assertions.catchThrowableOfType(SQLException.class, shouldThrow);
if (se == null) {
Assertions.fail(String.format("expected an exception of type %s to be thrown, but no exception was thrown", SQLException.class.getSimpleName()));
}
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fdb = "7.1.26"
geophile = "2.3.0"
generatedAnnotation = "1.3.2"
grpc = "1.64.1"
grpc-commonProtos = "2.9.6"
grpc-commonProtos = "2.37.0"
guava = "33.3.1-jre"
h2 = "1.3.148"
icu = "69.1"
Expand All @@ -53,7 +53,7 @@ slf4j = "1.7.36"

# Test-only dependency versions

assertj = "3.24.2"
assertj = "3.26.3"
apache-commonsCollections = "4.4"
apache-commonsMath3 = "3.6.1"
apache-httpclient = "5.2.1"
Expand All @@ -62,7 +62,7 @@ diffutils = "4.12"
hamcrest = "2.2"
jcommander = "1.81"
jline = "3.19.0"
junit = "5.11.2"
junit = "5.11.3"
junit-platform = "1.7.1"
mockito = "3.7.7"
snakeyaml = "2.2"
Expand Down
Loading