Skip to content

Commit 48d7803

Browse files
authored
replace FIXME test with a real one
1 parent 53f81d1 commit 48d7803

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/test/scala/stdlib/TraversablesSpec.scala

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -441,15 +441,14 @@ class TraversablesSpec extends Spec with Checkers {
441441
)
442442
}
443443

444-
// FIXME: this test depends on runtime timing of code
445-
// def `performant traversals` = {
446-
// check(
447-
// Test.testSuccess(
448-
// Traversables.performantTraversables _,
449-
// false :: HNil
450-
// )
451-
// )
452-
// }
444+
def `reduceRight as reduceLeft` = {
445+
check(
446+
Test.testSuccess(
447+
Traversables.reduceRightAsReduceLeft _,
448+
3 :: 3 :: 3 :: HNil
449+
)
450+
)
451+
}
453452

454453
def `transpose function` = {
455454
check(

0 commit comments

Comments
 (0)