mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 22:31:16 +00:00
Fixed test compilation.
This commit is contained in:
parent
c06e9ac992
commit
add57da804
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ public class MockRestApi extends RestApi {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<Device> getDevices() {
|
public List<Device> getDevices(boolean includeLocal) {
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ public class RestApiTest extends AndroidTestCase {
|
||||||
|
|
||||||
@SmallTest
|
@SmallTest
|
||||||
public void testGetDevices() {
|
public void testGetDevices() {
|
||||||
assertNotNull(mApi.getDevices());
|
assertNotNull(mApi.getDevices(false));
|
||||||
}
|
}
|
||||||
|
|
||||||
@MediumTest
|
@MediumTest
|
||||||
|
|
Loading…
Reference in a new issue