From 7bc6ecb86df8d5b28e4293ee34e4f5b5d70a3798 Mon Sep 17 00:00:00 2001 From: Marc Philipp Date: Sat, 15 Dec 2018 18:56:24 +0100 Subject: [PATCH] Polishing --- .../platform/testkit/engine/TestExecutionResultConditions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine/TestExecutionResultConditions.java b/junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine/TestExecutionResultConditions.java index 9e149c4d09ba..c4da92696d62 100644 --- a/junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine/TestExecutionResultConditions.java +++ b/junit-platform-testkit/src/main/java/org/junit/platform/testkit/engine/TestExecutionResultConditions.java @@ -64,7 +64,7 @@ public static Condition throwable(Condition cause(Condition condition) { - return new Condition<>(throwable -> condition.matches(throwable.getCause()), "nested throwable matches %s", + return new Condition<>(throwable -> condition.matches(throwable.getCause()), "throwable cause matches %s", condition); }