diff --git a/Programming Basics/Expressions & Statements/Exercise 2/test/Tests.kt b/Programming Basics/Expressions & Statements/Exercise 2/test/Tests.kt index cc061ceb..f5aa16ad 100644 --- a/Programming Basics/Expressions & Statements/Exercise 2/test/Tests.kt +++ b/Programming Basics/Expressions & Statements/Exercise 2/test/Tests.kt @@ -41,8 +41,8 @@ class TestExpressionsAndStatementsExercise2 { Assert.assertTrue("The return type of '$func()' is '$type'; " + "'$type' should be printed to the console", type in output) } - checkType("Int", "g") - checkType("String", "h") - checkType("Unit", "f") + checkType("Int", "f") + checkType("String", "g") + checkType("Unit", "h") } } \ No newline at end of file