From 3f0d9cc32a56dbd52e87db744d0952c95525a4d3 Mon Sep 17 00:00:00 2001 From: Felicio Cassalho <61760479+felicio93@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:37:21 -0400 Subject: [PATCH] Update features.py tdir+"/" --- tests/api/features.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/api/features.py b/tests/api/features.py index bc83224..c9cc385 100644 --- a/tests/api/features.py +++ b/tests/api/features.py @@ -59,7 +59,7 @@ def test_ctor_args_4(self): with tempfile.TemporaryDirectory() as tdir: - shape_path = Path(tdir) / + shape_path = tdir+"/" gdf = gpd.GeoDataFrame(geometry=[self._mult_line_1], crs=self._crs_2) gdf.to_file(shape_path, mode='a') @@ -90,7 +90,7 @@ def test_ctor_args_6(self): with tempfile.TemporaryDirectory() as tdir: - shape_path = Path(tdir) / + shape_path = tdir+"/" # NOTE: This time shapefile doesn't have CRS gdf = gpd.GeoDataFrame(geometry=[self._mult_line_1])