SPELLING: updae error message in tests

This commit is contained in:
Katelyn Baker
2018-01-04 15:49:55 +00:00
parent 6d485a3329
commit 01e4880947
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ public class ErrorMessageTests {
private String errMsg(String property, String testname) { private String errMsg(String property, String testname) {
return "Property '" return "Property '"
+ property + property
+ "' or it's getter is non public, this renders class 'class " + "' or its getter is non public, this renders class 'class "
+ testname + testname
+ "$C' unserializable -> class " + "$C' unserializable -> class "
+ testname + testname

View File

@ -10,7 +10,7 @@ class ErrorMessagesTests {
} }
private fun errMsg(property:String, testname: String) = private fun errMsg(property:String, testname: String) =
"Property '$property' or it's getter is non public, this renders class 'class $testname\$C' unserializable -> class $testname\$C" "Property '$property' or its getter is non public, this renders class 'class $testname\$C' unserializable -> class $testname\$C"
@Test @Test
fun privateProperty() { fun privateProperty() {