From 3524f3cadedffce4eb0e4d46c4b9f5a66e56c79a Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Wed, 14 Mar 2018 15:55:56 +0100 Subject: [PATCH] fix tests --- test/groovy/com/sap/piper/ConfigurationHelperTest.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/groovy/com/sap/piper/ConfigurationHelperTest.groovy b/test/groovy/com/sap/piper/ConfigurationHelperTest.groovy index 2817d1ba0..bf93a4eb0 100644 --- a/test/groovy/com/sap/piper/ConfigurationHelperTest.groovy +++ b/test/groovy/com/sap/piper/ConfigurationHelperTest.groovy @@ -65,9 +65,10 @@ class ConfigurationHelperTest { void testConfigurationLoaderWithFilteredCustomSettings() { Set filter = ['property2'] Map config = new ConfigurationHelper([property1: "27"]) - .mixin([property1: "41"], filter) + .mixin([property1: "41", property2: "28"], filter) .use() // asserts Assert.assertThat(config, hasEntry('property1', "27")) + Assert.assertThat(config, hasEntry('property2', "28")) } }