Skip to content

Commit

Permalink
Correct column value check for test assert
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajkoti committed Jan 24, 2024
1 parent 90d8180 commit 3777a67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requires-python = ">=3.8"
dependencies = [
"apache-airflow>=2.7",
"attrs>=20.3.0",
"pandas==2.1.4", # Versions 2.2.0 seems to be breaking our tests, so pin it to this version temporarily.
"pandas<2.2.0", # Versions 2.2.0 seems to be breaking our tests, so pin it to this version temporarily.
"pyarrow",
"python-frontmatter",
"smart-open",
Expand Down
4 changes: 2 additions & 2 deletions python-sdk/tests_integration/databases/test_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def test_snowflake_create_table_with_columns(database_table_fixture):
assert rows[0][1] == "NUMBER(38,0)"
assert rows[0][2] == "COLUMN"

assert rows[1][0] == "ID"
assert rows[1][1] == "NUMBER(60)"
assert rows[1][0] == "NAME"
assert rows[1][1] == "VARCHAR(60)"
assert rows[1][2] == "COLUMN"


Expand Down

0 comments on commit 3777a67

Please sign in to comment.