[luftdateninfo] Fix tests (fix thing UID and thing type UID) (#12624)

Fix #12622

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
lolodomo 2022-04-18 19:35:48 +02:00 committed by GitHub
parent 4329115f00
commit e42202d2e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -111,12 +111,12 @@ public class ThingMock implements Thing {
@Override @Override
public ThingUID getUID() { public ThingUID getUID() {
return new ThingUID("", ""); return new ThingUID("luftdateninfo", "test");
} }
@Override @Override
public ThingTypeUID getThingTypeUID() { public ThingTypeUID getThingTypeUID() {
return new ThingTypeUID(""); return new ThingTypeUID("luftdateninfo:any");
} }
@Override @Override