From 75d878a1075c81842bb409e9725f4089c6381fdb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 29 Aug 2025 22:21:46 +1000 Subject: [PATCH] Correct error updating the tests in last commit Correct error in 9ff2ccd350a97889ed28ac91bd6ccc142fcd4d5b --- tests/python/bl_pyapi_prop_array.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/python/bl_pyapi_prop_array.py b/tests/python/bl_pyapi_prop_array.py index c1bddebd5bd..7a5a71aff8a 100644 --- a/tests/python/bl_pyapi_prop_array.py +++ b/tests/python/bl_pyapi_prop_array.py @@ -511,11 +511,11 @@ class TestPropArrayMultiDimensional(unittest.TestCase): def test_matrix_4x4(self): self._test_matrix(4, 4) - def _test_matrix_with_callbacks_3x3(self): - self._test_matrix_with_callbacks(self, 3, 3) + def test_matrix_with_callbacks_3x3(self): + self._test_matrix_with_callbacks(3, 3) - def _test_matrix_with_callbacks_4x4(self): - self._test_matrix_with_callbacks(self, 4, 4) + def test_matrix_with_callbacks_4x4(self): + self._test_matrix_with_callbacks(4, 4) class TestPropArrayDynamicAssign(unittest.TestCase):