From 755b33a63b235c7d9c56d10498e1d67c67186562 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 31 Mar 2026 07:12:43 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20test:=20update=20Synth=20enum=20count=204?= =?UTF-8?q?2=20=E2=86=92=2046?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- test_pytheory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_pytheory.py b/test_pytheory.py index f2511fc..036f2ba 100644 --- a/test_pytheory.py +++ b/test_pytheory.py @@ -5333,7 +5333,7 @@ def test_supersaw_wave(): @needs_portaudio def test_all_synths_in_enum(): from pytheory.play import Synth - assert len(Synth) == 42 + assert len(Synth) == 46 for s in Synth: wave = s(440, n_samples=1000) assert len(wave) == 1000 @@ -7155,7 +7155,7 @@ def test_score_system_propagates(): def test_synth_enum_count(): from pytheory.play import Synth - assert len(Synth) == 42 + assert len(Synth) == 46 def test_all_synths_render_and_enum_match():