[testng] 06/355: Update Assert.java
Eugene Zhukov
eugene-guest at moszumanska.debian.org
Tue Aug 18 10:19:41 UTC 2015
This is an automated email from the git hooks/post-receive script.
eugene-guest pushed a commit to annotated tag OpenBSD
in repository testng.
commit 56f1a1d9b5ae81dced70093f2f4120dfaa774e5e
Author: Yossi Farjoun <farjoun at broadinstitute.org>
Date: Wed May 15 12:48:23 2013 -0400
Update Assert.java
Tiny typo in the Error message that shows up when arrays are not equal (but have same length)
---
src/main/java/org/testng/Assert.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/testng/Assert.java b/src/main/java/org/testng/Assert.java
index 06737bd..c945696 100644
--- a/src/main/java/org/testng/Assert.java
+++ b/src/main/java/org/testng/Assert.java
@@ -142,7 +142,7 @@ public class Assert {
assertEquals(_actual, _expected);
} catch (AssertionError ae) {
failNotEquals(actual, expected, message == null ? "" : message
- + " (values as index " + i + " are not the same)");
+ + " (values at index " + i + " are not the same)");
}
}
//array values matched
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/testng.git
More information about the pkg-java-commits
mailing list