From f800fe0ae25a6c4a3c646adcacdc8d801c700bd0 Mon Sep 17 00:00:00 2001 From: BryanFauble <17128019+BryanFauble@users.noreply.github.com> Date: Wed, 10 Jul 2024 13:08:00 -0700 Subject: [PATCH] Patch for change in numpy 2 in test --- tests/integration/synapseclient/test_tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/synapseclient/test_tables.py b/tests/integration/synapseclient/test_tables.py index 98c3c04c3..4ea23786b 100644 --- a/tests/integration/synapseclient/test_tables.py +++ b/tests/integration/synapseclient/test_tables.py @@ -389,7 +389,7 @@ async def test_tables_pandas(syn, project): ] ), "string_": tuple( - np.string_(s) for s in ["urgot", "has", "dark", "mysterious", "past"] + np.bytes_(s) for s in ["urgot", "has", "dark", "mysterious", "past"] ), } )