Adjust test (#18346)

Signed-off-by: Leo Siepel <leosiepel@gmail.com>
pull/18226/merge
lsiepel 2025-03-02 21:08:47 +01:00 committed by GitHub
parent b3876ad66f
commit 7b67b1cbd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 8 deletions

View File

@ -113,14 +113,6 @@ class TestHandler {
assertEquals(ThingStatus.OFFLINE, tsi.getStatus());
assertEquals(ThingStatusDetail.CONFIGURATION_ERROR, tsi.getStatusDetail());
assertEquals("@text/casokitchen.winecooler-2z.status.device-id-missing", tsi.getDescription());
config.put("deviceId", "xyz");
thing.setConfiguration(config);
winecoolerHandler.initialize();
tsi = thing.getStatusInfo();
assertEquals(ThingStatus.UNKNOWN, tsi.getStatus());
assertEquals(ThingStatusDetail.NONE, tsi.getStatusDetail());
assertEquals("@text/casokitchen.winecooler-2z.status.wait-for-response", tsi.getDescription());
}
@Test