mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:17:43 +03:00
commit
6d0566ff3b
2 changed files with 3 additions and 5 deletions
|
@ -26,7 +26,6 @@ import androidx.test.espresso.Espresso
|
|||
import androidx.test.espresso.Espresso.onView
|
||||
import androidx.test.espresso.action.ViewActions.click
|
||||
import androidx.test.espresso.action.ViewActions.closeSoftKeyboard
|
||||
import androidx.test.espresso.action.ViewActions.scrollTo
|
||||
import androidx.test.espresso.assertion.ViewAssertions.matches
|
||||
import androidx.test.espresso.contrib.DrawerActions
|
||||
import androidx.test.espresso.contrib.NavigationViewActions
|
||||
|
@ -241,7 +240,6 @@ class FileDisplayActivityIT : AbstractOnServerIT() {
|
|||
|
||||
// browse into folder
|
||||
onView(withId(R.id.list_root))
|
||||
.perform(scrollTo())
|
||||
.perform(closeSoftKeyboard())
|
||||
.perform(
|
||||
RecyclerViewActions.actionOnItemAtPosition<OCFileListItemViewHolder>(
|
||||
|
|
|
@ -460,7 +460,7 @@ public class UploadIT extends AbstractOnServerIT {
|
|||
testOnlyOnServer(NextcloudVersion.nextcloud_27);
|
||||
|
||||
File file = getFile("gps.jpg");
|
||||
String remotePath = "/gps.jpg";
|
||||
String remotePath = "/metadata.jpg";
|
||||
OCUpload ocUpload = new OCUpload(file.getAbsolutePath(), remotePath, account.name);
|
||||
|
||||
assertTrue(
|
||||
|
@ -497,7 +497,7 @@ public class UploadIT extends AbstractOnServerIT {
|
|||
|
||||
OCFile ocFile = null;
|
||||
for (OCFile f : files) {
|
||||
if (f.getFileName().equals("gps.jpg")) {
|
||||
if (f.getFileName().equals("metadata.jpg")) {
|
||||
ocFile = f;
|
||||
break;
|
||||
}
|
||||
|
@ -505,8 +505,8 @@ public class UploadIT extends AbstractOnServerIT {
|
|||
|
||||
assertNotNull(ocFile);
|
||||
assertEquals(remotePath, ocFile.getRemotePath());
|
||||
assertEquals(new ImageDimension(300f, 200f), ocFile.getImageDimension());
|
||||
assertEquals(new GeoLocation(64, -46), ocFile.getGeoLocation());
|
||||
assertEquals(new ImageDimension(300f, 200f), ocFile.getImageDimension());
|
||||
}
|
||||
|
||||
private void verifyStoragePath(OCFile file) {
|
||||
|
|
Loading…
Reference in a new issue