From 9b31dbe44db0ce1dc4906f99c4f53bb10b9fa8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Ho=CC=88fer?= Date: Tue, 22 Mar 2016 14:54:54 +0100 Subject: [PATCH] additional fix for #1238 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas HoĢˆfer --- .../core/thing/binding/BindingBaseClassesOSGiTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/core/org.eclipse.smarthome.core.thing.test/src/test/groovy/org/eclipse/smarthome/core/thing/binding/BindingBaseClassesOSGiTest.groovy b/bundles/core/org.eclipse.smarthome.core.thing.test/src/test/groovy/org/eclipse/smarthome/core/thing/binding/BindingBaseClassesOSGiTest.groovy index 30f0da72..5d626dd0 100644 --- a/bundles/core/org.eclipse.smarthome.core.thing.test/src/test/groovy/org/eclipse/smarthome/core/thing/binding/BindingBaseClassesOSGiTest.groovy +++ b/bundles/core/org.eclipse.smarthome.core.thing.test/src/test/groovy/org/eclipse/smarthome/core/thing/binding/BindingBaseClassesOSGiTest.groovy @@ -278,8 +278,8 @@ class BindingBaseClassesOSGiTest extends OSGiTest { class ConfigStatusProviderThingHandler extends ConfigStatusThingHandler { private static final String PARAM = "param" - private static final ConfigStatusMessage ERROR = ConfigStatusMessage.Builder.error(PARAM, "param.invalid").build() - private static final ConfigStatusMessage INFO = ConfigStatusMessage.Builder.information(PARAM, "param.ok").build() + private static final ConfigStatusMessage ERROR = ConfigStatusMessage.Builder.error(PARAM).withMessageKey("param.invalid").build() + private static final ConfigStatusMessage INFO = ConfigStatusMessage.Builder.information(PARAM).withMessageKey("param.ok").build() private ConfigStatusCallback configStatusCallback; ConfigStatusProviderThingHandler(Thing thing) {