Fix test failure

revert-dabc3590
Charitha Goonetilleke 5 years ago
parent 9524b5b90a
commit fc77713384

@ -11,6 +11,7 @@ CREATE TABLE IF NOT EXISTS DM_DEVICE_TYPE (
CREATE TABLE IF NOT EXISTS DM_GROUP (
ID INTEGER AUTO_INCREMENT NOT NULL,
GROUP_NAME VARCHAR(100) DEFAULT NULL,
STATUS VARCHAR(50) DEFAULT NULL,
DESCRIPTION TEXT DEFAULT NULL,
OWNER VARCHAR(255) DEFAULT NULL,
TENANT_ID INTEGER DEFAULT 0,

@ -620,17 +620,17 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
}
@Override
public int getDeviceCountOfTypeByStatus(int i, String s, String s1) throws DeviceManagementException {
public int getDeviceCountOfTypeByStatus(String s, String s1) throws DeviceManagementException {
return 0;
}
@Override
public List<String> getDeviceIdentifiersByStatus(int i, String s, String s1) throws DeviceManagementException {
public List<String> getDeviceIdentifiersByStatus(String s, String s1) throws DeviceManagementException {
return null;
}
@Override
public boolean bulkUpdateDeviceStatus(int i, String s, List<String> list, String s1) throws DeviceManagementException {
public boolean bulkUpdateDeviceStatus(String s, List<String> list, String s1) throws DeviceManagementException {
return false;
}

Loading…
Cancel
Save