aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/Coder.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/Coder.scala')
-rw-r--r--tests/pos/Coder.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/Coder.scala b/tests/pos/Coder.scala
index a47dcf3c9..73e2542c0 100644
--- a/tests/pos/Coder.scala
+++ b/tests/pos/Coder.scala
@@ -43,8 +43,8 @@ class Coder(words: List[String]) {
word <- wordsForNum(number take splitPoint)
rest <- encode(number drop splitPoint)
} yield word :: rest
- )
- xs.toSet
+ ).toSet
+ xs//.toSet
}
/** Maps a number to a list of all word phrases that can represent it */