From ff01f800c1ce7e50ed7748c307227dde1c29bbeb Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 22 Sep 2023 13:28:21 -0500 Subject: [PATCH] fix --- tests/python_package_test/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_package_test/utils.py b/tests/python_package_test/utils.py index b83fa64d1801..7eae62b14369 100644 --- a/tests/python_package_test/utils.py +++ b/tests/python_package_test/utils.py @@ -211,5 +211,5 @@ def np_assert_array_equal(*args, **kwargs): This function is here for testing on older Python (and therefore ``numpy``) """ if not _numpy_testing_supports_strict_kwarg: - kawrgs.pop("strict") + kwargs.pop("strict") np.testing.assert_array_equal(*args, **kwargs)