about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--test/player_integration.rb2
-rw-r--r--test/test_rg_integration.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/player_integration.rb b/test/player_integration.rb
index 8ff1be2..5ca3e43 100644
--- a/test/player_integration.rb
+++ b/test/player_integration.rb
@@ -92,7 +92,7 @@ module PlayerIntegration
   def tmp_noise(len = 5)
     noise = Tempfile.open(%w(junk .sox))
     cmd = %W(sox -R -n -r44100 -c2 #{noise.path} synth #{len} pluck)
-    assert system(*cmd), cmd
+    assert system(*cmd), cmd.inspect
     [ noise, len ]
   end
 
diff --git a/test/test_rg_integration.rb b/test/test_rg_integration.rb
index 23fd5d6..5c570ad 100644
--- a/test/test_rg_integration.rb
+++ b/test/test_rg_integration.rb
@@ -7,14 +7,14 @@ class TestRgIntegration < Minitest::Unit::TestCase
   def tmp_pluck(len = 5)
     pluck = Tempfile.open(%w(pluck .flac))
     cmd = %W(sox -R -n -r44100 -c2 -C0 #{pluck.path} synth #{len} pluck)
-    assert system(*cmd), cmd
+    assert system(*cmd), cmd.inspect
     cmd = %W(metaflac
              --set-tag=REPLAYGAIN_TRACK_GAIN=-2
              --set-tag=REPLAYGAIN_ALBUM_GAIN=-3.0
              --set-tag=REPLAYGAIN_TRACK_PEAK=0.666
              --set-tag=REPLAYGAIN_ALBUM_PEAK=0.999
              #{pluck.path})
-    assert system(*cmd), cmd
+    assert system(*cmd), cmd.inspect
     [ pluck, len ]
   end