diff options
author | hippo91 <guillaume.peillex@gmail.com> | 2019-12-30 14:33:55 +0100 |
---|---|---|
committer | hippo91 <guillaume.peillex@gmail.com> | 2019-12-30 14:33:55 +0100 |
commit | e3e2d8a8e9fc3b1bdc0d7e8471313ce18f25d613 (patch) | |
tree | 67c4037d1681455164676cb431dc4bec71c36e66 | |
parent | 06c98d3c3cff7670c4330882ca6acd4a505a6903 (diff) | |
download | astroid-git-e3e2d8a8e9fc3b1bdc0d7e8471313ce18f25d613.tar.gz |
Corrects the use of numpy.multiply function
-rw-r--r-- | tests/unittest_regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittest_regrtest.py b/tests/unittest_regrtest.py index 8224494b..91fa8f16 100644 --- a/tests/unittest_regrtest.py +++ b/tests/unittest_regrtest.py @@ -92,7 +92,7 @@ class NonRegressionTests(resources.AstroidCacheSetupMixin, unittest.TestCase): data = """ from numpy import multiply -multiply(1, 2, 3) +multiply([1, 2], [3, 4]) """ astroid = builder.string_build(data, __name__, __file__) callfunc = astroid.body[1].value.func |