Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 576568b

Browse files
Fix typo in SqlServerProviderTests
1 parent 86cf998 commit 576568b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceStack.OrmLite.Tests/SqlServerProviderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ WHILE @i < @Times
114114
results = db.SqlColumn<int>("EXEC DummyColumn 10");
115115
Assert.That(results.Sum(), Is.EqualTo(expected));
116116

117-
results = db.SqlColumn<int>("EXEC DummyTable @Times", new Dictionary<string, object> { { "Times", 10 } });
117+
results = db.SqlColumn<int>("EXEC DummyColumn @Times", new Dictionary<string, object> { { "Times", 10 } });
118118
Assert.That(results.Sum(), Is.EqualTo(expected));
119119
}
120120

0 commit comments

Comments
 (0)