From c17aa78fdd09eeefdb5d34ae5bde81c33fbef7a0 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 24 Aug 2021 11:14:24 +0100 Subject: [PATCH] rename run_test to run_tst so nosetests3 skips it --- src/nmutil/test/test_clz.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nmutil/test/test_clz.py b/src/nmutil/test/test_clz.py index 09beb73..14e3472 100644 --- a/src/nmutil/test/test_clz.py +++ b/src/nmutil/test/test_clz.py @@ -8,7 +8,7 @@ import random class CLZTestCase(unittest.TestCase): - def run_test(self, inputs, width=8): + def run_tst(self, inputs, width=8): m = Module() @@ -34,11 +34,11 @@ class CLZTestCase(unittest.TestCase): def test_selected(self): inputs = [0, 15, 10, 127] - self.run_test(iter(inputs), width=8) + self.run_tst(iter(inputs), width=8) def test_non_power_2(self): inputs = [0, 128, 512] - self.run_test(iter(inputs), width=11) + self.run_tst(iter(inputs), width=11) if __name__ == "__main__": -- 2.30.2