Skip to content

Commit a3d7eb6

Browse files
committed
fix tests & add expected results
1 parent 53bd93c commit a3d7eb6

File tree

2 files changed

+642
-2
lines changed

2 files changed

+642
-2
lines changed

tests/circuitpython/synthio_block_biquad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from synthnotehelper import *
2-
from synthio import BlockBiquad, FilterType
2+
from synthio import BlockBiquad, FilterMode
33
import random
44

55
random.seed(41)
@@ -10,7 +10,7 @@
1010
def gen(synth):
1111
l = LFO(sweep, offset=1440, scale=2880, rate=.025, once=True)
1212
yield [l]
13-
b = BlockBiquad(FilterType.LOW_PASS, l)
13+
b = BlockBiquad(FilterMode.LOW_PASS, l)
1414
n = Note(100, filter=b, waveform=white_noise)
1515
synth.press(n)
1616
yield 20

0 commit comments

Comments
 (0)