Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/java/net/bramp/ffmpeg/FFprobeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void before() throws IOException {
.thenAnswer(new NewProcessAnswer("ffprobe-big_buck_bunny_720p_1mb.mp4"));

when(runFunc.run(argThatHasItem(Samples.always_on_my_mind)))
.thenAnswer(new NewProcessAnswer("ffprobe-Always On My Mind [Program Only] - Adelén.mp4"));
.thenAnswer(new NewProcessAnswer("ffprobe-Always On My Mind [Program Only] - Adelen.mp4"));

when(runFunc.run(argThatHasItem(Samples.start_pts_test)))
.thenAnswer(new NewProcessAnswer("ffprobe-start_pts_test"));
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/net/bramp/ffmpeg/fixtures/Samples.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private Samples() {
public static final String FAKE_PREFIX = "fake/";

public static final String always_on_my_mind =
FAKE_PREFIX + "Always On My Mind [Program Only] - Adelén.mp4";
FAKE_PREFIX + "Always On My Mind [Program Only] - Adelen.mp4";

public static final String start_pts_test = FAKE_PREFIX + "start_pts_test_1mb.ts";

Expand Down