From df254f6aab6e4ae5ed364cb03881a102f2e1a461 Mon Sep 17 00:00:00 2001 From: Adam Yoblick Date: Tue, 9 Jul 2024 16:10:42 -0500 Subject: [PATCH] fix broken numpy assert for 3.8 --- tests/debugpy/test_numpy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/debugpy/test_numpy.py b/tests/debugpy/test_numpy.py index 674c5713..2a9ebd90 100644 --- a/tests/debugpy/test_numpy.py +++ b/tests/debugpy/test_numpy.py @@ -51,7 +51,7 @@ def test_ndarray(pyfile, target, run): { "type": "int32", "name": "0", - "value": "np.int32(123)", + "value": some.str.containing("123"), "variablesReference": some.int, } ), @@ -59,7 +59,7 @@ def test_ndarray(pyfile, target, run): { "type": "int32", "name": "1", - "value": "np.int32(456)", + "value": some.str.containing("456"), "variablesReference": some.int, } ),