Skip to content

Commit

Permalink
Migrate usages of Truth8.assertThat to equivalent usages of `Truth.…
Browse files Browse the repository at this point in the history
…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: 601542681
  • Loading branch information
cpovirk authored and Error Prone Team committed Jan 31, 2024
1 parent e6e2706 commit 8f17d83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {",
Expand Down

0 comments on commit 8f17d83

Please sign in to comment.