summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index 6cd2d39..1a231f5 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -15,7 +15,9 @@ class TestFrame(object):
def test_buffers(self):
N = 256
f = base.Frame(N)
+ f.synth_size = N
assert f.size == N
+ assert f.synth_size == N
a = np.random.rand(N)
f.audio = a