From 8f17d83b42928fdfb931916d06cbdfdec943f273 Mon Sep 17 00:00:00 2001 From: cpovirk Date: Thu, 25 Jan 2024 13:11:17 -0800 Subject: [PATCH] Migrate usages of `Truth8.assertThat` to equivalent usages of `Truth.assertThat`. The `Truth8` methods will be hidden in the future. All callers will use `Truth`. To make that migration possible, upgrade Truth to 1.3.0. (progress toward https://github.com/google/truth/issues/746) PiperOrigin-RevId: 601542681 --- .../collectionincompatibletype/TruthIncompatibleTypeTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TruthIncompatibleTypeTest.java b/core/src/test/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TruthIncompatibleTypeTest.java index 80029675938f..81fa611eb63a 100644 --- a/core/src/test/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TruthIncompatibleTypeTest.java +++ b/core/src/test/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TruthIncompatibleTypeTest.java @@ -458,7 +458,7 @@ public void streamContainsExactly() { compilationHelper .addSourceLines( "Test.java", - "import static com.google.common.truth.Truth8.assertThat;", + "import static com.google.common.truth.Truth.assertThat;", "import com.google.common.collect.Multimap;", "import java.util.stream.Stream;", "public class Test {",