summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2007-03-02 22:30:21 +0000
committerBurak Emir <emir@epfl.ch>2007-03-02 22:30:21 +0000
commita5abaf7350b3fa9e9a56de1482a714eb114307f9 (patch)
treeca93a17d442161ad80717b06e973c68bbe5f7173 /src
parentcac2dae1954586d34bff6e3aad0439ccc6d4bdce (diff)
downloadscala-a5abaf7350b3fa9e9a56de1482a714eb114307f9.tar.gz
scala-a5abaf7350b3fa9e9a56de1482a714eb114307f9.tar.bz2
scala-a5abaf7350b3fa9e9a56de1482a714eb114307f9.zip
typo in SUnit
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/testing/SUnit.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/testing/SUnit.scala b/src/library/scala/testing/SUnit.scala
index 4ab93db976..d581f08d91 100644
--- a/src/library/scala/testing/SUnit.scala
+++ b/src/library/scala/testing/SUnit.scala
@@ -185,12 +185,12 @@ object SUnit {
assertNotEq("(no message)", expected, actual)
/** fail if expected eq actual */
- def assertNotEq(msg: String, expected => AnyRef, actual: => AnyRef) {
+ def assertNotEq(msg: String, expected: => AnyRef, actual: => AnyRef) {
if (expected eq actual) fail(msg)
}
/** fail if expected eq actual */
- def assertNotEq(msg: String, expected => AnyRef, actual: => AnyRef) {
+ def assertNotEq(msg: String, expected: => AnyRef, actual: => AnyRef) {
assertNotEq("(no message)", expected, actual)
}