diff --git a/tests/tests/test_bson.py b/tests/tests/test_bson.py index fcc88f51c..14da0f380 100644 --- a/tests/tests/test_bson.py +++ b/tests/tests/test_bson.py @@ -74,7 +74,7 @@ def test_read_bson( f"create external table bson_beatles from bson options ( location='{data_path}', file_type='bson')" ) - for from_clause in ["bson_beatles", f"read_bson('{data_path}')", f"{data_path}"]: + for from_clause in ["bson_beatles", f"read_bson('{data_path}')", f"'{data_path}'"]: with glaredb_connection.cursor() as curr: curr.execute(f"select count(*) from {from_clause}") r = curr.fetchone()