summaryrefslogtreecommitdiff
path: root/tests/sbuffer_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sbuffer_test.py')
-rw-r--r--tests/sbuffer_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sbuffer_test.py b/tests/sbuffer_test.py
index 1805175..da21909 100644
--- a/tests/sbuffer_test.py
+++ b/tests/sbuffer_test.py
@@ -49,9 +49,9 @@ class SBufferTest(unittest.TestCase):
c = gras.SBufferConfig()
c.length = 4
s0 = gras.SBuffer(c)
- p = Py2PMC(s0)
+ p = PMC_M(s0)
print p
- s1 = PMC2Py(p)
+ s1 = p()
self.assertEqual(c.length, s1.length)
self.assertEqual(c.length, len(s1))