about summary refs log tree commit homepage
path: root/test/test_source_sox.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_source_sox.rb')
-rw-r--r--test/test_source_sox.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_source_sox.rb b/test/test_source_sox.rb
index ce4fe93..05ea9a8 100644
--- a/test/test_source_sox.rb
+++ b/test/test_source_sox.rb
@@ -35,7 +35,7 @@ class TestSource < Testcase
     x(%W(metaflac --set-tag=FOO=BAR #{tmp.path}))
     x(%W(metaflac --add-replay-gain #{tmp.path}))
     assert_equal source.comments["FOO"], "BAR"
-    rg = source.replaygain
+    rg = source.replaygain('track_gain')
     assert_kind_of DTAS::ReplayGain, rg
     assert_in_delta 0.0, rg.track_peak.to_f, 0.00000001
     assert_in_delta 0.0, rg.album_peak.to_f, 0.00000001
@@ -62,7 +62,7 @@ class TestSource < Testcase
       end
     end
 
-    rg = source.replaygain
+    rg = source.replaygain('track_gain')
     assert_kind_of DTAS::ReplayGain, rg
     assert_in_delta 0.0, rg.track_peak.to_f, 0.00000001
     assert_in_delta 0.0, rg.album_peak.to_f, 0.00000001