diff options
author | hippo91 <guillaume.peillex@gmail.com> | 2019-12-27 12:03:17 +0100 |
---|---|---|
committer | hippo91 <guillaume.peillex@gmail.com> | 2019-12-28 14:48:13 +0100 |
commit | 0cd44c7616a4018e26cda48d65b2fe2781392ed1 (patch) | |
tree | 31d4b97a679a122e34018e60076f75a838c3f2ee | |
parent | bb7fe8d661353b7aed137c9345b91bce721041e0 (diff) | |
download | astroid-git-0cd44c7616a4018e26cda48d65b2fe2781392ed1.tar.gz |
Add the test of functions add and multiply
-rw-r--r-- | tests/unittest_brain_numpy_core_umath.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unittest_brain_numpy_core_umath.py b/tests/unittest_brain_numpy_core_umath.py index 51b696f6..3307a8c1 100644 --- a/tests/unittest_brain_numpy_core_umath.py +++ b/tests/unittest_brain_numpy_core_umath.py @@ -60,6 +60,7 @@ class NumpyBrainCoreUmathTest(unittest.TestCase): ) two_args_ufunc = ( + "add", "bitwise_and", "bitwise_or", "bitwise_xor", @@ -82,6 +83,7 @@ class NumpyBrainCoreUmathTest(unittest.TestCase): "logical_xor", "maximum", "minimum", + "multiply", "nextafter", "not_equal", "power", |