Fix test failure

This commit is contained in:
charitha 2019-10-26 01:25:00 +05:30
parent 9524b5b90a
commit fc77713384
2 changed files with 4 additions and 3 deletions

View File

@ -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,

View File

@ -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;
}