Skip to content

Commit 99704ec

Browse files
committed
Fix the test that's supposed to confirm the implementation!
1 parent ecb04c8 commit 99704ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PostgrestTests/ClientTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ public async Task TestOrderBy()
440440

441441
linqOrderedUsers = unorderedResponse.Models
442442
.OrderByDescending(u => u.Username)
443-
.OrderByDescending(u => u.Status)
443+
.ThenByDescending(u => u.Status)
444444
.ToList();
445445

446446
CollectionAssert.AreEqual(linqOrderedUsers, multipleOrderedResponse.Models);

0 commit comments

Comments
 (0)