1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-23 04:41:16 +00:00

Fixed test compilation.

This commit is contained in:
Felix Ableitner 2015-02-27 23:38:38 +01:00
parent c06e9ac992
commit add57da804
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ public class MockRestApi extends RestApi {
}
@Override
public List<Device> getDevices() {
public List<Device> getDevices(boolean includeLocal) {
return new ArrayList<>();
}

View file

@ -70,7 +70,7 @@ public class RestApiTest extends AndroidTestCase {
@SmallTest
public void testGetDevices() {
assertNotNull(mApi.getDevices());
assertNotNull(mApi.getDevices(false));
}
@MediumTest