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:
parent
c06e9ac992
commit
add57da804
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ public class MockRestApi extends RestApi {
|
|||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDevices() {
|
||||
public List<Device> getDevices(boolean includeLocal) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ public class RestApiTest extends AndroidTestCase {
|
|||
|
||||
@SmallTest
|
||||
public void testGetDevices() {
|
||||
assertNotNull(mApi.getDevices());
|
||||
assertNotNull(mApi.getDevices(false));
|
||||
}
|
||||
|
||||
@MediumTest
|
||||
|
|
Loading…
Reference in a new issue