1
1
Fork 0

Minor fix: matched function name to expected type

This commit is contained in:
iampatbrown 2020-06-04 17:19:04 +10:00
parent fefd93d34e
commit b79b201aab
1 changed files with 3 additions and 3 deletions

View File

@ -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")
}
}