This is an automated email from the ASF dual-hosted git repository. kevinjqliu pushed a commit to branch christophediprima/main in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
commit 811ddde3b71abb706048faa2cba5005fe302e440 Author: Kevin Liu <[email protected]> AuthorDate: Tue Sep 2 19:11:53 2025 -0700 missing f string --- tests/io/test_fsspec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/io/test_fsspec.py b/tests/io/test_fsspec.py index caafbf1b..3e90a178 100644 --- a/tests/io/test_fsspec.py +++ b/tests/io/test_fsspec.py @@ -574,7 +574,7 @@ def test_writing_avro_file_adls(generated_manifest_entry_file: str, adls_fsspec_ @pytest.mark.adls def test_fsspec_pickle_round_trip_aldfs(adls_fsspec_fileio: FsspecFileIO, adls_scheme: str) -> None: - _test_fsspec_pickle_round_trip(adls_fsspec_fileio, "{adls_scheme}://tests/foo.txt") + _test_fsspec_pickle_round_trip(adls_fsspec_fileio, f"{adls_scheme}://tests/foo.txt") @pytest.mark.adls
