summaryrefslogtreecommitdiff
path: root/test/files/jvm/try-type-tests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/try-type-tests.scala')
-rw-r--r--test/files/jvm/try-type-tests.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/files/jvm/try-type-tests.scala b/test/files/jvm/try-type-tests.scala
index 351f02b183..17811f64c5 100644
--- a/test/files/jvm/try-type-tests.scala
+++ b/test/files/jvm/try-type-tests.scala
@@ -107,7 +107,7 @@ trait TryStandard {
val s = Success(1)
val succ = (x: Int) => Success(x * 10)
val fail = (x: Throwable) => Success(0)
- assert(s.transform(succ, fail).get == s.get)
+ assert(s.transform(succ, fail).get == 10)
}
def testFailureTransform(): Unit = {
@@ -133,6 +133,8 @@ trait TryStandard {
testFlattenSuccess()
testFailedSuccess()
testFailedFailure()
+ testSuccessTransform()
+ testFailureTransform()
}
object Test