Skip to content

Commit 5d2a1a1

Browse files
committed
fix test
1 parent 07b2950 commit 5d2a1a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/arduino/app_bricks/sound_generator/test_effects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MPL-2.0
44

55
from arduino.app_bricks.sound_generator.effects import SoundEffect
6-
from arduino.app_bricks.sound_generator import SoundGenerator, WaveSamplesBuilder
6+
from arduino.app_bricks.sound_generator import SoundGeneratorStreamer, WaveSamplesBuilder
77

88

99
def test_adsr_effect():
@@ -56,7 +56,7 @@ def test_available_notes():
5656
("B4", 0.25),
5757
]
5858

59-
generator = SoundGenerator()
59+
generator = SoundGeneratorStreamer()
6060
for note, duration in note_sequence:
6161
print(f"Testing note: {note}")
6262
frequency = generator._get_note(note)

0 commit comments

Comments
 (0)