summaryrefslogtreecommitdiff
path: root/test/files/run/colltest1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/colltest1.scala')
-rw-r--r--test/files/run/colltest1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/colltest1.scala b/test/files/run/colltest1.scala
index 081522d3f6..9a3942e928 100644
--- a/test/files/run/colltest1.scala
+++ b/test/files/run/colltest1.scala
@@ -112,7 +112,7 @@ object Test extends Application {
assert(ten.startsWith(List(3, 4), 2))
assert(ten.endsWith(List(9, 10)))
assert(ten.endsWith(List()))
- assert(ten.indexOfSeq(List(3, 4, 5)) == 2, ten.indexOfSeq(List(3, 4, 5)))
+ assert(ten.indexOfSlice(List(3, 4, 5)) == 2, ten.indexOfSlice(List(3, 4, 5)))
assert(ten contains 1)
assert(ten contains 10)
assert(!(ten contains 0))