Skip to content

Commit

Permalink
Fix typo in vertical video tests
Browse files Browse the repository at this point in the history
b/391963566
  • Loading branch information
jasonzhangxx committed Jan 28, 2025
1 parent 41f30d8 commit b1d7ed0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions starboard/nplb/vertical_video_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ TEST_P(VerticalVideoTest, WriteSamples) {
player_fixture.ConvertDurationToVideoBufferCount(200'000);

GroupedSamples samples;
samples.AddVideoSamples(0, audio_samples_to_write);
samples.AddVideoEOS();
samples.AddAudioSamples(0, video_samples_to_write);
samples.AddAudioSamples(0, audio_samples_to_write);
samples.AddAudioEOS();
samples.AddVideoSamples(0, video_samples_to_write);
samples.AddVideoEOS();

ASSERT_NO_FATAL_FAILURE(player_fixture.Write(samples));
ASSERT_NO_FATAL_FAILURE(player_fixture.WaitForPlayerEndOfStream());
Expand Down

0 comments on commit b1d7ed0

Please sign in to comment.