diff --git a/tests/test_internal/test_io.py b/tests/test_internal/test_io.py index 32e54dbe0..fe0cbf3fe 100644 --- a/tests/test_internal/test_io.py +++ b/tests/test_internal/test_io.py @@ -54,7 +54,7 @@ def test_interprete_file_source_from_str(): with ValidationContext(root=Path(__file__).parent.parent): interpreted = interprete_file_source(src) assert isinstance(interpreted, RelativeFilePath) - assert isinstance(interpreted.absolute, Path) + assert isinstance(interpreted.absolute(), Path) assert interpreted.absolute().exists()