Skip to content

Commit

Permalink
Fix confusing (but not buggy) test case
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Jan 13, 2025
1 parent b591027 commit 2edd9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/FwLite/MiniLcm.Tests/UpdateEntryTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public async Task UpdateEntry_CanUseSameVersionMultipleTimes()

[Theory]
[InlineData("a,b", "a,b,c,d", "1,2,3,4")] // append
[InlineData("a,2", "c,a,b", "0,1,2")] // single prepend
[InlineData("a,b", "c,a,b", "0,1,2")] // single prepend
[InlineData("a,b", "d,c,a,b", "0,0.5,1,2")] // multi prepend
[InlineData("a,b,c,d", "d,a,b,c", "0,1,2,3")] // move to back
[InlineData("a,b,c,d", "b,c,d,a", "2,3,4,5")] // move to front
Expand Down Expand Up @@ -161,7 +161,7 @@ public async Task UpdateEntry_CanReorderSenses(string before, string after, stri

[Theory]
[InlineData("a,b", "a,b,c,d", "1,2,3,4")] // append
[InlineData("a,2", "c,a,b", "0,1,2")] // single prepend
[InlineData("a,b", "c,a,b", "0,1,2")] // single prepend
[InlineData("a,b", "d,c,a,b", "0,0.5,1,2")] // multi prepend
[InlineData("a,b,c,d", "d,a,b,c", "0,1,2,3")] // move to back
[InlineData("a,b,c,d", "b,c,d,a", "2,3,4,5")] // move to front
Expand Down

0 comments on commit 2edd9ba

Please sign in to comment.