Skip to content

Commit 2c86302

Browse files
committed
fixed something
1 parent 2f0b547 commit 2c86302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/common/staging_ingestion_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,9 @@ def generate_file_and_path_and_queries():
310310
with open(fh, "wb") as fp:
311311
original_text = "hello world!".encode("utf-8")
312312
fp.write(original_text)
313-
put_query = f"PUT '{temp_path}' INTO 'stage://tmp/{ingestion_user}/tmp/11/15/{id(temp_path)}.csv' OVERWRITE"
313+
put_query = f"PUT '{temp_path}' INTO 'stage://tmp/{ingestion_user}/tmp/11/16/{id(temp_path)}.csv' OVERWRITE"
314314
remove_query = (
315-
f"REMOVE 'stage://tmp/{ingestion_user}/tmp/11/15/{id(temp_path)}.csv'"
315+
f"REMOVE 'stage://tmp/{ingestion_user}/tmp/11/16/{id(temp_path)}.csv'"
316316
)
317317
return fh, temp_path, put_query, remove_query
318318

0 commit comments

Comments
 (0)