From 8e51a8073acd08d14567f161f4c34810d591e616 Mon Sep 17 00:00:00 2001 From: Felicio Cassalho <61760479+felicio93@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:42:47 -0400 Subject: [PATCH] Update features.py tdir + "/mysubdir" --- 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 c9cc385..8434c23 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 = tdir+"/" + shape_path = tdir + "/mysubdir" 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 = tdir+"/" + shape_path = tdir + "/mysubdir" # NOTE: This time shapefile doesn't have CRS gdf = gpd.GeoDataFrame(geometry=[self._mult_line_1])