We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f81d1 commit 48d7803Copy full SHA for 48d7803
src/test/scala/stdlib/TraversablesSpec.scala
@@ -441,15 +441,14 @@ class TraversablesSpec extends Spec with Checkers {
441
)
442
}
443
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
- // }
+ def `reduceRight as reduceLeft` = {
+ check(
+ Test.testSuccess(
+ Traversables.reduceRightAsReduceLeft _,
+ 3 :: 3 :: 3 :: HNil
+ )
+ }
453
454
def `transpose function` = {
455
check(
0 commit comments