about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2024-01-27 22:03:44 +0000
committerEric Wong <e@80x24.org>2024-01-27 22:18:37 +0000
commite4ec1f8ec7cc770368ce71c3136c6a4829411980 (patch)
tree8d55adb961632db6bdccff86b0b39473914aa07e
parent5839a311299c9dd628bcb1b97c5458a325c548d5 (diff)
downloaddtas-e4ec1f8ec7cc770368ce71c3136c6a4829411980.tar.gz
test_player_integration: fix w/ ffmpeg > avconv
I forgot to run tests :x
-rw-r--r--test/test_player_integration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_player_integration.rb b/test/test_player_integration.rb
index 5059bd2..09eceee 100644
--- a/test/test_player_integration.rb
+++ b/test/test_player_integration.rb
@@ -209,11 +209,11 @@ class TestPlayerIntegration < Testcase
 
   def test_source_ed
     s = client_socket
-    assert_equal "sox av ff splitfx", s.req("source ls")
+    assert_equal "sox ff av splitfx", s.req("source ls")
     s.req_ok("source ed av tryorder=-1")
     assert_equal "av sox ff splitfx", s.req("source ls")
     s.req_ok("source ed av tryorder=")
-    assert_equal "sox av ff splitfx", s.req("source ls")
+    assert_equal "sox ff av splitfx", s.req("source ls")
 
     s.req_ok("source ed sox command=true")
     sox = DTAS.yaml_load(s.req("source cat sox"))