Skip to content

Commit e8decad

Browse files
committed
fix broken test on main
1 parent ea00d04 commit e8decad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/tests/test_sql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_register_csv(ctx, tmp_path):
100100

101101
with pytest.raises(
102102
ValueError,
103-
match="file_compression_type must one of: gzip, bz2, xz, zstd",
103+
match="file_compression_type must be one of: gzip, bz2, xz, zstd",
104104
):
105105
ctx.register_csv("csv4", path, file_compression_type="rar")
106106

@@ -288,7 +288,7 @@ def test_register_json(ctx, tmp_path):
288288

289289
with pytest.raises(
290290
ValueError,
291-
match="file_compression_type must one of: gzip, bz2, xz, zstd",
291+
match="file_compression_type must be one of: gzip, bz2, xz, zstd",
292292
):
293293
ctx.register_json("json4", gzip_path, file_compression_type="rar")
294294

0 commit comments

Comments
 (0)