Skip to content

Commit 96bea6a

Browse files
author
Hong Teng
committed
Fix for issue 5712743 video editor functional test : testPreviewDuringExport fails
-Correct the invalid filename, which contains control character. And with the invalid filename, the cts fails only on crespo, but passes on stingray and prime. Change-Id: I77862e55e8ee990f72f617a804f26fd724914b5b
1 parent 613ed4c commit 96bea6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/VideoEditorPreviewTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ public void onProgress(Object item, int action, int progress) {
709709

710710

711711
blockTillPreviewCompletes.acquire();
712-
final String fileName = mVideoEditor.getPath() + "\test.3gp";
712+
final String fileName = mVideoEditor.getPath() + "/test.3gp";
713713
final int height = MediaProperties.HEIGHT_480;
714714
final int bitrate = MediaProperties.BITRATE_512K;
715715

0 commit comments

Comments
 (0)