aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java')
-rw-r--r--core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java b/core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java
index cb9d7976..d4546cdc 100644
--- a/core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java
+++ b/core/src/test/java/com/google/common/truth/TruthFailureSubjectTest.java
@@ -157,13 +157,13 @@ public class TruthFailureSubjectTest extends BaseSubjectTestCase {
@Test
public void nonTruthErrorFactKeys() {
Object unused = expectFailureWhenTestingThat(new AssertionError()).factKeys();
- assertFailureKeys("expected a failure thrown by Truth's new failure API", "but was");
+ assertFailureKeys("expected a failure thrown by Truth's failure API", "but was");
}
@Test
public void nonTruthErrorFactValue() {
Object unused = expectFailureWhenTestingThat(new AssertionError()).factValue("foo");
- assertFailureKeys("expected a failure thrown by Truth's new failure API", "but was");
+ assertFailureKeys("expected a failure thrown by Truth's failure API", "but was");
}
private TruthFailureSubject assertThat(Fact... facts) {