shithub: aubio

Download patch

ref: 67f0092e50bfe01587708cc517831f3f3babaf8c
parent: 55027f3d92a1fcda75bf7be17fd90c0bd0c118f4
author: Paul Brossier <piem@piem.org>
date: Mon Aug 29 19:07:15 EDT 2016

python/tests/test_cvec.py: simplify

--- a/python/tests/test_cvec.py
+++ b/python/tests/test_cvec.py
@@ -11,9 +11,8 @@
 
     def test_vector_created_with_zeroes(self):
         a = cvec(10)
-        assert_equal(a.norm.shape[0], 10 / 2 + 1)
-        assert_equal(a.phas.shape[0], 10 / 2 + 1)
-        _ = a.norm[0]
+        assert_equal(a.norm.shape[0], 10 // 2 + 1)
+        assert_equal(a.phas.shape[0], 10 // 2 + 1)
         assert_equal(a.norm, 0.)
         assert_equal(a.phas, 0.)