Skip to content

Commit d14b977

Browse files
committed
fix: Fixed expected output
1 parent 462a1e0 commit d14b977

File tree

1 file changed

+1
-1
lines changed
  • libraries/stdlib/samples/test/samples/collections

1 file changed

+1
-1
lines changed

libraries/stdlib/samples/test/samples/collections/arrays.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class Arrays {
8888
// arrays of unsigned types
8989
val uIntArray = uintArrayOf(1u, 2u, 3u)
9090
assertPrints(uIntArray.getOrElse(0) { 10u }, "1")
91-
assertPrints(uIntArray.getOrElse(-1) { 10u }, "10u")
91+
assertPrints(uIntArray.getOrElse(-1) { 10u }, "10")
9292
}
9393
}
9494

0 commit comments

Comments
 (0)