Skip to content

Commit 287f066

Browse files
authored
fix(pytest): Remove invalid argument from pytest (#4912)
Remove invalid argument in test_exit_on_s3_snapshot_load_err pytest Signed-off-by: mkaruza <mario@dragonflydb.io>
1 parent b1f8c9b commit 287f066

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/dragonfly/snapshot_test.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,7 @@ def delete_s3_objects(bucket, prefix):
334334
)
335335
async def test_exit_on_s3_snapshot_load_err(df_factory):
336336
invalid_s3_dir = "s3://{DRAGONFLY_S3_BUCKET}" + "_invalid_bucket_"
337-
df_server = df_factory.create(
338-
dir=invalid_s3_dir, dbfilename="db", exit_on_cloud_dir_snapshot_load_err=True
339-
)
337+
df_server = df_factory.create(dir=invalid_s3_dir, dbfilename="db")
340338
df_server.start()
341339
# Let's wait so that process exit
342340
await asyncio.sleep(2)

0 commit comments

Comments
 (0)