Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9013c3d

Browse files
authoredFeb 25, 2025··
pytest: use correct type of quotes for conda's SQLite 3.49.0+ (SQLITE_DQS=0) (#5199)
1 parent d8173ad commit 9013c3d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎macos/files/conda-requirements-dev-arm64.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ python.app
4444
python<3.13
4545
setuptools
4646
six
47-
sqlite<3.49.0
47+
sqlite
4848
wxpython=4.2.2
4949
zstd

‎temporal/t.unregister/testsuite/test_unregister.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_1(self):
114114
"t.list",
115115
type="raster",
116116
columns="name",
117-
where='mapset = "%s" AND (name = "a1" OR name = "a2" OR name = "a3")'
117+
where="mapset = '%s' AND (name = 'a1' OR name = 'a2' OR name = 'a3')"
118118
% (tgis.get_current_mapset()),
119119
)
120120
self.runModule(lister)
@@ -127,7 +127,7 @@ def test_1(self):
127127
"t.list",
128128
type="raster",
129129
columns="name",
130-
where='mapset = "%s" AND (name = "a1" OR name = "a2" OR name = "a3")'
130+
where="mapset = '%s' AND (name = 'a1' OR name = 'a2' OR name = 'a3')"
131131
% (tgis.get_current_mapset()),
132132
)
133133
self.runModule(lister)
@@ -145,7 +145,7 @@ def test_1(self):
145145
"t.list",
146146
type="raster",
147147
columns="name",
148-
where='mapset = "%s" AND (name = "a4" OR name = "a5" OR name = "a6")'
148+
where="mapset = '%s' AND (name = 'a4' OR name = 'a5' OR name = 'a6')"
149149
% (tgis.get_current_mapset()),
150150
)
151151
self.runModule(lister)
@@ -158,7 +158,7 @@ def test_1(self):
158158
"t.list",
159159
type="raster",
160160
columns="name",
161-
where='mapset = "%s" AND (name = "a4" OR name = "a5" OR name = "a6")'
161+
where="mapset = '%s' AND (name = 'a4' OR name = 'a5' OR name = 'a6')"
162162
% (tgis.get_current_mapset()),
163163
)
164164
self.runModule(lister)

‎vector/v.db.select/testsuite/test_v_db_select_json_csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def setUpClass(cls):
9191
map=cls.vector_points,
9292
layer=1,
9393
column="place_name",
94-
query_column='"Joan\'s Place"',
94+
value="Joan''s Place",
9595
where="owner_id = 5",
9696
)
9797
# Pipe

0 commit comments

Comments
 (0)
Please sign in to comment.