Skip to content

Commit 40395ed

Browse files
committed
update ExampleLambda0
1 parent 13fc026 commit 40395ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ExampleLambda0.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object ExampleLambda0 {
1313
class ExampleLambda0 extends SimpleLambdaRuntime {
1414

1515
override def handleRequest(input: String)(using LambdaContext, ApplicationContext): String = {
16-
input.reverse
16+
input
1717
}
1818

1919
}

ExampleLambda0.test.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class ExampleLambda0Spec extends munit.FunSuite {
88

99
val output = new ExampleLambda0().test(input)
1010

11-
assertEquals(output, "3 alacS")
11+
assertEquals(output, "Scala 3")
1212
}
1313

1414
}

0 commit comments

Comments
 (0)