Skip to content

Commit 4eb812d

Browse files
cpovirkError Prone Team
authored and
Error Prone Team
committed
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 google/truth#746) PiperOrigin-RevId: 603108718
1 parent e6e2706 commit 4eb812d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TruthIncompatibleTypeTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ public void streamContainsExactly() {
458458
compilationHelper
459459
.addSourceLines(
460460
"Test.java",
461-
"import static com.google.common.truth.Truth8.assertThat;",
461+
"import static com.google.common.truth.Truth.assertThat;",
462462
"import com.google.common.collect.Multimap;",
463463
"import java.util.stream.Stream;",
464464
"public class Test {",

0 commit comments

Comments
 (0)