Repository: logging-log4j2 Updated Branches: refs/heads/master 7af6c0525 -> 27b3cb759
Fix typo in test assert message. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/27b3cb75 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/27b3cb75 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/27b3cb75 Branch: refs/heads/master Commit: 27b3cb759e18d2c9bc84a154749cf6ed0d56bb93 Parents: 7af6c05 Author: ggregory <[email protected]> Authored: Sat Jan 2 17:04:49 2016 -0800 Committer: ggregory <[email protected]> Committed: Sat Jan 2 17:04:49 2016 -0800 ---------------------------------------------------------------------- .../src/test/java/org/apache/logging/log4j/junit/CleanFiles.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/27b3cb75/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java index 7b962b7..69b0cdc 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFiles.java @@ -52,7 +52,7 @@ public class CleanFiles extends ExternalResource { file.deleteOnExit(); } assertTrue( - "Could not delete " + file.toString() + ", last modifed " + "Could not delete " + file.toString() + ", last modified " + DateFormat.getInstance().format(new Date(file.lastModified())), deleted); } }
