about summary refs log tree commit homepage
path: root/test/test_player_integration.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-08-26 08:26:58 +0000
committerEric Wong <normalperson@yhbt.net>2013-08-26 08:26:58 +0000
commitbc00dd1b3fee22bd91bd713e697b8b31be978d4e (patch)
tree0ae20084aa4bdeb1c5c793bb472102711cf2e268 /test/test_player_integration.rb
parentb7b0697b035c08e818204397a1c0cd19ba161eb4 (diff)
downloaddtas-bc00dd1b3fee22bd91bd713e697b8b31be978d4e.tar.gz
Since ffmpeg/ffprobe are wrappers around their libav-variants,
I haven't had the chance to actually test with "real" ffmpeg,
but the usage is probably similar enough to not matter.
Diffstat (limited to 'test/test_player_integration.rb')
-rw-r--r--test/test_player_integration.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_player_integration.rb b/test/test_player_integration.rb
index 757ed35..23a73ab 100644
--- a/test/test_player_integration.rb
+++ b/test/test_player_integration.rb
@@ -191,11 +191,11 @@ class TestPlayerIntegration < Minitest::Unit::TestCase
 
   def test_source_ed
     s = client_socket
-    assert_equal "sox av", s.req("source ls")
+    assert_equal "sox av ff", s.req("source ls")
     s.req_ok("source ed av tryorder=-1")
-    assert_equal "av sox", s.req("source ls")
+    assert_equal "av sox ff", s.req("source ls")
     s.req_ok("source ed av tryorder=")
-    assert_equal "sox av", s.req("source ls")
+    assert_equal "sox av ff", s.req("source ls")
 
     s.req_ok("source ed sox command=true")
     sox = YAML.load(s.req("source cat sox"))