Skip to content

Commit

Permalink
Update test/integ/pandas/test_pandas_tools.py
Browse files Browse the repository at this point in the history
Co-authored-by: Afroz Alam <[email protected]>
  • Loading branch information
sfc-gh-stan and sfc-gh-aalam authored Jun 12, 2023
1 parent d422557 commit 49e0649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integ/pandas/test_pandas_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 49e0649

Please sign in to comment.