Skip to content

Commit

Permalink
fix broken numpy assert for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamYoblick committed Jul 9, 2024
1 parent 16a4b9c commit df254f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/debugpy/test_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def code_to_debug():
{
"type": "int32",
"name": "0",
"value": "np.int32(123)",
"value": some.str.containing("123"),
"variablesReference": some.int,
}
),
some.dict.containing(
{
"type": "int32",
"name": "1",
"value": "np.int32(456)",
"value": some.str.containing("456"),
"variablesReference": some.int,
}
),
Expand Down

0 comments on commit df254f6

Please sign in to comment.