Skip to content

Commit

Permalink
Fix error in unit test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjolly committed Jun 19, 2024
1 parent 9c0f53a commit ce1158b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/audio_offset_finder_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_find_offset_between_files():

results = find_offset_between_files(path("r4.ogg"), path("r4_excerpt2.ogg"), hop_length=128, trim=20 * 60)
assert results["time_offset"] == pytest.approx(726.4)
assert results["standard_score"] == pytest.approx(59.23, rel=1e-2)
assert results["standard_score"] == pytest.approx(58.66, rel=1e-2)


def test_std_mfcc():
Expand Down

0 comments on commit ce1158b

Please sign in to comment.