Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-ward committed Jan 23, 2024
1 parent ef39b53 commit 2e8074e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyogrio/tests/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def test_arrow_bool_roundtrip(tmpdir):


@pytest.mark.skipif(
__gdal_version__ >= (3, 8, 8), reason="Arrow bool value bug fixed in GDAL >= 3.8.3"
__gdal_version__ >= (3, 8, 3), reason="Arrow bool value bug fixed in GDAL >= 3.8.3"
)
def test_arrow_bool_exception(tmpdir):
filename = os.path.join(str(tmpdir), "test.gpkg")
Expand Down
4 changes: 2 additions & 2 deletions pyogrio/tests/test_geopandas_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@ def test_arrow_bool_roundtrip(tmpdir):
filename = os.path.join(str(tmpdir), "test.gpkg")

df = gp.GeoDataFrame(
{{"bool_col": [True, False, True, False, True], "geometry": [Point(0, 0)] * 5}},
{"bool_col": [True, False, True, False, True], "geometry": [Point(0, 0)] * 5},
crs="EPSG:4326",
)

Expand All @@ -1490,7 +1490,7 @@ def test_arrow_bool_roundtrip(tmpdir):


@pytest.mark.skipif(
__gdal_version__ >= (3, 8, 8), reason="Arrow bool value bug fixed in GDAL >= 3.8.3"
__gdal_version__ >= (3, 8, 3), reason="Arrow bool value bug fixed in GDAL >= 3.8.3"
)
def test_arrow_bool_exception(tmpdir):
filename = os.path.join(str(tmpdir), "test.gpkg")
Expand Down

0 comments on commit 2e8074e

Please sign in to comment.