From 2e7e7bdf104388d7ee20ee54c1cfab25ebe63497 Mon Sep 17 00:00:00 2001 From: Steve Peters <scpeters@openrobotics.org> Date: Thu, 16 Sep 2021 16:37:10 -0700 Subject: [PATCH] fix test Signed-off-by: Steve Peters <scpeters@openrobotics.org> --- src/python/Matrix3_TEST.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/Matrix3_TEST.py b/src/python/Matrix3_TEST.py index 535e15001..22941264f 100644 --- a/src/python/Matrix3_TEST.py +++ b/src/python/Matrix3_TEST.py @@ -116,7 +116,7 @@ def test_mul(self): def test_stream_out(self): matrix = Matrix3d(1, 2, 3, 4, 5, 6, 7, 8, 9) - self.assertEqual(str(matA), "1 2 3 4 5 6 7 8 9") + self.assertEqual(str(matrix), "1 2 3 4 5 6 7 8 9") def test_vector3_mul(self): matrix = Matrix3d(1, 2, 3, 4, 5, 6, 7, 8, 9)