From e3e2d8a8e9fc3b1bdc0d7e8471313ce18f25d613 Mon Sep 17 00:00:00 2001 From: hippo91 Date: Mon, 30 Dec 2019 14:33:55 +0100 Subject: Corrects the use of numpy.multiply function --- tests/unittest_regrtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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 -- cgit v1.2.1