From 718bbab4794a7fab47309fbbec98a092d283df2d Mon Sep 17 00:00:00 2001 From: Jen Hamon Date: Fri, 15 Nov 2024 15:17:18 -0500 Subject: [PATCH] Adjust test assertion --- .../control/serverless/test_index_instantiation_ux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/control/serverless/test_index_instantiation_ux.py b/tests/integration/control/serverless/test_index_instantiation_ux.py index 12722267..0e56f925 100644 --- a/tests/integration/control/serverless/test_index_instantiation_ux.py +++ b/tests/integration/control/serverless/test_index_instantiation_ux.py @@ -8,6 +8,6 @@ def test_index_instantiation_ux(self): pinecone.Index(name="my-index", host="host") assert ( - str(e.value) - == "You are attempting to access the Index client directly from the pinecone module." + "You are attempting to access the Index client directly from the pinecone module." + in str(e.value) )