Skip to content

Commit 6905967

Browse files
Updated Tests
1 parent f99f098 commit 6905967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FFmpegAndroid/src/androidTest/java/com/github/hiteshsondhi88/libffmpeg/ShellCommandTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ public void run() {
4444

4545
public void testRunWaitFor() throws Exception {
4646
ShellCommand shellCommand = new ShellCommand();
47-
CommandResult commandResult = shellCommand.runWaitFor("ls /sdcard/");
47+
CommandResult commandResult = shellCommand.runWaitFor("logcat -d");
48+
Thread.sleep(2000);
4849
assertNotNull(commandResult);
4950
assertEquals(true, commandResult.success);
5051
assertThat(commandResult.output).isNotEmpty();

0 commit comments

Comments
 (0)