Skip to content

Commit 2234996

Browse files
committed
Fix compilation error
1 parent 987edf7 commit 2234996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Tests/Linq/OrderByTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void OrderByDescendingTest()
109109
var expected = Customers
110110
.OrderByDescending(c => c.Address.Country).ThenByDescending(c => c.CustomerId)
111111
.Select(c => c.Address.City)
112-
.Where(c => c[0] != 'S');
112+
.Where(c => c[0] != 'S').ToList();
113113
Assert.That(result.Count, Is.EqualTo(expected.Count));
114114
Assert.That(result, Is.Not.Empty);
115115
for (var i = 0; i < expected.Count; i++) {

0 commit comments

Comments
 (0)