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

Fix the names of some Truth classes. (The AssertionCallback classes were deleted so long ago that we could probably remove the references outright, so let me know if you'd prefer that.) #4579

Merged
merged 1 commit into from
Sep 17, 2024
Merged
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 @@ -1354,12 +1354,12 @@ public static boolean isThrowingFunctionalInterface(Type clazzType, VisitorState
"org.junit.function.ThrowingRunnable",
"org.junit.jupiter.api.function.Executable",
"org.assertj.core.api.ThrowableAssert$ThrowingCallable",
"com.google.common.truth.ExpectFailure.AssertionCallback",
"com.google.common.truth.ExpectFailure.DelegatedAssertionCallback",
"com.google.common.truth.ExpectFailure.StandardSubjectBuilderCallback",
"com.google.common.truth.ExpectFailure.SimpleSubjectBuilderCallback",
"com.google.devtools.build.lib.testutil.MoreAsserts$ThrowingRunnable",
"com.google.gerrit.testing.GerritJUnit$ThrowingRunnable",
"com.google.truth.ExpectFailure.AssertionCallback",
"com.google.truth.ExpectFailure.DelegatedAssertionCallback",
"com.google.truth.ExpectFailure.StandardSubjectBuilderCallback",
"com.google.truth.ExpectFailure.SimpleSubjectBuilderCallback")
"com.google.gerrit.testing.GerritJUnit$ThrowingRunnable")
.map(state::getTypeFromString)
.filter(Objects::nonNull)
.collect(toImmutableSet()));
Expand Down
Loading