Skip to content

Commit 64dbc46

Browse files
committed
Correction to SQL Server unit test change
I don't have SQL Server so I checked in a unit tests without running it. It failed. I forgot to do so on a *topic branch* instead of master.
1 parent e16769b commit 64dbc46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests3/sqlservertests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ def test_row_slicing(self):
12031203

12041204
def test_row_repr(self):
12051205
self.cursor.execute("create table t1(a int, b int, c int, d varchar(50))");
1206-
self.cursor.execute("insert into t1 values(1,2,3,4)")
1206+
self.cursor.execute("insert into t1 values(1,2,3,'four')")
12071207

12081208
row = self.cursor.execute("select * from t1").fetchone()
12091209

0 commit comments

Comments
 (0)