From 7e4bb0770b34b3cdd229c194682565277b27abe0 Mon Sep 17 00:00:00 2001 From: Anders Wallin Date: Thu, 25 Jul 2019 10:15:19 +0300 Subject: [PATCH] consistently num_points, as discussed in #99 --- tests/functional_tests/test_overwrite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional_tests/test_overwrite.py b/tests/functional_tests/test_overwrite.py index ece3f3a..8892036 100644 --- a/tests/functional_tests/test_overwrite.py +++ b/tests/functional_tests/test_overwrite.py @@ -13,7 +13,7 @@ def test_overwrite(): https://github.com/aewallin/allantools/issues/76 """ x1 = at.noise.white(num_points=1024) - x2 = at.noise.pink(N=1024) + x2 = at.noise.pink(num_points=1024) ds1 = at.Dataset(x1) ds2 = at.Dataset(x2) r1 = ds1.compute('oadev')