Skip to content

Commit 7ecbfb5

Browse files
committed
Fix tests
1 parent ad9f51e commit 7ecbfb5

File tree

1 file changed

+2
-2
lines changed
  • tests/integration/test_storage_iceberg

1 file changed

+2
-2
lines changed

tests/integration/test_storage_iceberg/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2590,8 +2590,8 @@ def test_writes_with_compression_metadata(started_cluster, format_version, stora
25902590
instance.query(f"INSERT INTO {TABLE_NAME} VALUES ('123', 1);", settings={"allow_experimental_insert_into_iceberg": 1, "iceberg_metadata_compression_method": "gzip"})
25912591
assert instance.query(f"SELECT * FROM {TABLE_NAME} ORDER BY ALL") == '123\t1\n'
25922592

2593-
def test_writes_create_table_bugs(started_cluster_iceberg_no_spark):
2594-
instance = started_cluster_iceberg_no_spark.instances["node1"]
2593+
def test_writes_create_table_bugs(started_cluster):
2594+
instance = started_cluster.instances["node1"]
25952595
TABLE_NAME = "test_writes_create_table_bugs_" + get_uuid_str()
25962596
TABLE_NAME_1 = "test_writes_create_table_bugs_" + get_uuid_str()
25972597
instance.query(

0 commit comments

Comments
 (0)