Skip to content

Commit

Permalink
fix(smoke-test): add suffix in temp file creation (#10841)
Browse files Browse the repository at this point in the history
  • Loading branch information
sid-acryl authored and yoonhyejin committed Jul 16, 2024
1 parent ced241e commit 3bbf835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smoke-test/tests/dataproduct/test_dataproduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def create_test_data(filename: str):

@pytest.fixture(scope="module", autouse=False)
def ingest_cleanup_data(request):
new_file, filename = tempfile.mkstemp()
new_file, filename = tempfile.mkstemp(suffix=".json")
try:
create_test_data(filename)
print("ingesting data products test data")
Expand Down

0 comments on commit 3bbf835

Please sign in to comment.