Skip to content

Commit be484e1

Browse files
Addition to the #812
- test syncing
1 parent 63ff785 commit be484e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/appium/java_client/android/AndroidDriverTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class AndroidDriverTest extends BaseAndroidTest {
6262
.getBytes());
6363
driver.pushFile("/data/local/tmp/remote.txt", data);
6464
byte[] returnData = driver.pullFile("/data/local/tmp/remote.txt");
65-
String returnDataDecoded = new String(Base64.decodeBase64(returnData));
65+
String returnDataDecoded = new String(returnData);
6666
assertEquals(
6767
"The eventual code is no more than the deposit of your understanding. ~E. W. Dijkstra",
6868
returnDataDecoded);
@@ -75,7 +75,7 @@ public class AndroidDriverTest extends BaseAndroidTest {
7575
+ "more than the deposit of your understanding. ~E. W. Dijkstra", "UTF-8", true);
7676
driver.pushFile("/data/local/tmp/remote2.txt", temp);
7777
byte[] returnData = driver.pullFile("/data/local/tmp/remote2.txt");
78-
String returnDataDecoded = new String(Base64.decodeBase64(returnData));
78+
String returnDataDecoded = new String(returnData);
7979
assertEquals(
8080
"The eventual code is no more than the deposit of "
8181
+ "your understanding. ~E. W. Dijkstra",

0 commit comments

Comments
 (0)