File tree 3 files changed +6
-6
lines changed
temporal/t.unregister/testsuite
vector/v.db.select/testsuite
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,6 @@ python.app
44
44
python<3.13
45
45
setuptools
46
46
six
47
- sqlite<3.49.0
47
+ sqlite
48
48
wxpython=4.2.2
49
49
zstd
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ def test_1(self):
114
114
"t.list" ,
115
115
type = "raster" ,
116
116
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')"
118
118
% (tgis .get_current_mapset ()),
119
119
)
120
120
self .runModule (lister )
@@ -127,7 +127,7 @@ def test_1(self):
127
127
"t.list" ,
128
128
type = "raster" ,
129
129
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')"
131
131
% (tgis .get_current_mapset ()),
132
132
)
133
133
self .runModule (lister )
@@ -145,7 +145,7 @@ def test_1(self):
145
145
"t.list" ,
146
146
type = "raster" ,
147
147
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')"
149
149
% (tgis .get_current_mapset ()),
150
150
)
151
151
self .runModule (lister )
@@ -158,7 +158,7 @@ def test_1(self):
158
158
"t.list" ,
159
159
type = "raster" ,
160
160
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')"
162
162
% (tgis .get_current_mapset ()),
163
163
)
164
164
self .runModule (lister )
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def setUpClass(cls):
91
91
map = cls .vector_points ,
92
92
layer = 1 ,
93
93
column = "place_name" ,
94
- query_column = ' "Joan\' s Place"' ,
94
+ value = "Joan'' s Place" ,
95
95
where = "owner_id = 5" ,
96
96
)
97
97
# Pipe
You can’t perform that action at this time.
0 commit comments