From 3d253880c29fce8316547e555504a53273544b75 Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Mon, 12 Nov 2018 13:27:42 -0700 Subject: [PATCH] [SHIBUI-703] Flipped an unecessary boolean in a test config. --- ...MetadataSourcesUiDefinitionControllerIntegrationTests.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/controller/BadJSONMetadataSourcesUiDefinitionControllerIntegrationTests.groovy b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/controller/BadJSONMetadataSourcesUiDefinitionControllerIntegrationTests.groovy index a960eb183..3624f6ce3 100644 --- a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/controller/BadJSONMetadataSourcesUiDefinitionControllerIntegrationTests.groovy +++ b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/controller/BadJSONMetadataSourcesUiDefinitionControllerIntegrationTests.groovy @@ -69,7 +69,7 @@ class BadJSONMetadataSourcesUiDefinitionControllerIntegrationTests extends Speci .jsonSchemaLocation('classpath:local-dynamic-metadata-provider.schema.json') .resourceLoader(resourceLoader) .jacksonMapper(jacksonMapper) - .detectMalformedJson(true) + .detectMalformedJson(false) .build()) } }