1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-22 13:00:17 +02:00

fix tests

This commit is contained in:
Andreas Shimokawa 2020-06-13 22:52:23 +02:00
parent 0c1aa4a24f
commit 5ce44a4575
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class DeviceCommunicationServiceTestCase extends TestBase {
super.setUp(); super.setUp();
mockSupport = null; mockSupport = null;
realSupport = new TestDeviceSupport(); realSupport = new TestDeviceSupport();
realSupport.setContext(new GBDevice(TEST_DEVICE_ADDRESS, "Test Device", DeviceType.TEST), null, getContext()); realSupport.setContext(new GBDevice(TEST_DEVICE_ADDRESS, "Test Device", "Test Device Alias", DeviceType.TEST), null, getContext());
mockSupport = Mockito.spy(realSupport); mockSupport = Mockito.spy(realSupport);
DeviceCommunicationService.setDeviceSupportFactory(new TestDeviceSupportFactory(getContext())); DeviceCommunicationService.setDeviceSupportFactory(new TestDeviceSupportFactory(getContext()));

View File

@ -85,7 +85,7 @@ public abstract class TestBase {
} }
protected GBDevice createDummyGDevice(String macAddress) { protected GBDevice createDummyGDevice(String macAddress) {
GBDevice dummyGBDevice = new GBDevice(macAddress, "Testie", DeviceType.TEST); GBDevice dummyGBDevice = new GBDevice(macAddress, "Testie", "Tesie Alias", DeviceType.TEST);
dummyGBDevice.setFirmwareVersion("1.2.3"); dummyGBDevice.setFirmwareVersion("1.2.3");
dummyGBDevice.setModel("4.0"); dummyGBDevice.setModel("4.0");
return dummyGBDevice; return dummyGBDevice;