Skip to content

Commit 06520be

Browse files
committed
Spelling
1 parent 302b449 commit 06520be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/src/python/test_provider_mssql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def testOverwriteExisting(self):
305305
f.setAttributes([133])
306306
pr.addFeatures([f])
307307

308-
uri = '{} table="qgis_test"."sacrificalLamb" sql='.format(self.dbconn)
308+
uri = '{} table="qgis_test"."sacrificialLamb" sql='.format(self.dbconn)
309309
new_layer = QgsVectorLayer(uri, 'new', 'mssql')
310310
self.assertTrue(new_layer.isValid())
311311
self.assertEqual([f.attributes() for f in new_layer.getFeatures()], [[1]])

tests/testdata/provider/testdata_mssql.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ GO
2525
DROP TABLE IF EXISTS qgis_test.[multiGeomColumns];
2626
GO
2727

28-
DROP TABLE IF EXISTS qgis_test.[sacrificalLamb];
28+
DROP TABLE IF EXISTS qgis_test.[sacrificialLamb];
2929
GO
3030

3131
DROP SCHEMA qgis_test;
@@ -72,7 +72,7 @@ CREATE TABLE qgis_test.[multiGeomColumns] (
7272
);
7373
GO
7474

75-
CREATE TABLE qgis_test.[sacrificalLamb] (
75+
CREATE TABLE qgis_test.[sacrificialLamb] (
7676
pk integer PRIMARY KEY
7777
);
7878
GO
@@ -101,7 +101,7 @@ INSERT INTO qgis_test.[float_dec] (id, float_field, dec_field ) VALUES
101101
(1, 1.1111111111, 1.123 );
102102
GO
103103

104-
INSERT INTO qgis_test.[sacrificalLamb] (pk) VALUES
104+
INSERT INTO qgis_test.[sacrificialLamb] (pk) VALUES
105105
(1);
106106
GO
107107

0 commit comments

Comments
 (0)