From 3cc319ef08471ac6a2a6f6dd7f2fb3b34fec92fe Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Sat, 19 Sep 2020 14:30:58 -0400 Subject: [PATCH] removed debug print statement in test_util --- python/tests/test_util.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/tests/test_util.py b/python/tests/test_util.py index 588cc823f..053045741 100644 --- a/python/tests/test_util.py +++ b/python/tests/test_util.py @@ -25,7 +25,6 @@ class TestUtil: ]) def test_scale2coprime(self,input,output): - print(util.scale_to_coprime(np.array(input))) assert np.allclose(util.scale_to_coprime(np.array(input)), np.array(output).astype(int))