Skip to content

Commit e5559b2

Browse files
small test edit
1 parent 0b43cb3 commit e5559b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyogrio/tests/test_arrow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ def test_open_arrow_batch_size(naturalearth_lowres):
231231
"descr, columns, exp_columns",
232232
[
233233
("all", None, ["pop_est", "continent", "name", "iso_a3", "gdp_md_est"]),
234-
("case_sensitive", ["NAME", "NAME_LONG"], []),
234+
("case_sensitive", ["NAME"], []),
235235
("repeats_dropped", ["continent", "continent", "name"], ["continent", "name"]),
236-
("keep_original_order", ["pop_est", "continent"], ["pop_est", "continent"]),
236+
("keep_original_order", ["continent", "pop_est"], ["pop_est", "continent"]),
237237
],
238238
)
239239
def test_open_arrow_columns(naturalearth_lowres, descr, columns, exp_columns):

pyogrio/tests/test_raw_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ def test_read_no_geometry_no_columns_no_fids(naturalearth_lowres):
159159
"descr, columns, exp_columns",
160160
[
161161
("all", None, ["pop_est", "continent", "name", "iso_a3", "gdp_md_est"]),
162-
("case_sensitive", ["NAME", "NAME_LONG"], []),
162+
("case_sensitive", ["NAME"], []),
163163
("repeats_dropped", ["continent", "continent", "name"], ["continent", "name"]),
164-
("keep_original_order", ["pop_est", "continent"], ["pop_est", "continent"]),
164+
("keep_original_order", ["continent", "pop_est"], ["pop_est", "continent"]),
165165
],
166166
)
167167
def test_read_columns(naturalearth_lowres, descr, columns, exp_columns):

0 commit comments

Comments
 (0)