File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/io/appium/java_client/android Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments