Fix a test

This commit is contained in:
Philippe Collin 2016-03-30 14:08:17 -04:00
parent 90dd9b960c
commit 9be41b7a69

View File

@ -46,9 +46,9 @@ class ConfigBeanFactoryTest extends TestUtils {
ConfigBeanFactory.create(config, classOf[ValidationBeanConfig])
}
val expecteds = Seq(Missing("propNotListedInConfig", 77, "string"),
WrongType("shouldBeInt", 78, "number", "boolean"),
WrongType("should-be-boolean", 79, "boolean", "number"))
val expecteds = Seq(Missing("propNotListedInConfig", 78, "string"),
WrongType("shouldBeInt", 79, "number", "boolean"),
WrongType("should-be-boolean", 80, "boolean", "number"))
checkValidationException(e, expecteds)
}