From 49e064992c055a3310d493addd214b34fd6939a7 Mon Sep 17 00:00:00 2001 From: Sophie Tan Date: Mon, 12 Jun 2023 13:06:33 -0400 Subject: [PATCH] Update test/integ/pandas/test_pandas_tools.py Co-authored-by: Afroz Alam --- test/integ/pandas/test_pandas_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integ/pandas/test_pandas_tools.py b/test/integ/pandas/test_pandas_tools.py index ef88a4832..6cf9f9e3e 100644 --- a/test/integ/pandas/test_pandas_tools.py +++ b/test/integ/pandas/test_pandas_tools.py @@ -54,7 +54,7 @@ def test_fix_snow_746341(conn_cnx: Callable[..., Generator[SnowflakeConnection, table_name = random_string(5, "snow746341_") with conn_cnx() as conn: write_pandas(conn, df, table_name, auto_create_table=True, table_type="temporary") - assert conn.cursor().execute(f'select * from "{table_name}"').fetchall() == [(1,),(2,)] + assert conn.cursor().execute(f'select * from "{table_name}"').fetchall() == [(1,), (2,)] @pytest.mark.parametrize("quote_identifiers", [True, False])