Related to openhab/openhab-core#1848
Signed-off-by: Laurent Garnier <lg.hc@free.fr>
assertFalse(results.isEmpty(), "No Thing with UID " + computerUID.getAsString() + " in inbox");
});
- inbox.approve(computerUID, SysteminfoDiscoveryService.DEFAULT_THING_LABEL);
+ inbox.approve(computerUID, SysteminfoDiscoveryService.DEFAULT_THING_LABEL, null);
waitForAssert(() -> {
systemInfoThing = thingRegistry.get(computerUID);
assertTrue(inbox.stream().anyMatch(forThingUID(thingUID)));
});
- inbox.approve(thingUID, DEVICE_FRIENDLY_NAME);
+ inbox.approve(thingUID, DEVICE_FRIENDLY_NAME, null);
waitForAssert(() -> {
Thing thing = thingRegistry.get(thingUID);