Skip to content

Commit

Permalink
Fixed unit-test that was missing its name and incorrectly used the na…
Browse files Browse the repository at this point in the history
…me as a parameter to the test method instead
  • Loading branch information
lassevk committed May 1, 2017
1 parent cdc5fa8 commit 196c85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiffLib.Tests/MergeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class MergeTests
[TestCase("1234567890", "1234890", "1234890", "1234890", TestName = "Both sides deleted")]
[TestCase("1234567890", "12abc34567890", "1234567890", "12abc34567890", TestName = "Left side inserted")]
[TestCase("1234567890", "1234567890", "12abc34567890", "12abc34567890", TestName = "Right side inserted")]
[TestCase("1234567890", "12abc34567890", "12klm34567890", "12abcklm34567890", "Both sides inserted at the same place, take left then right")]
[TestCase("1234567890", "12abc34567890", "12klm34567890", "12abcklm34567890", TestName = "Both sides inserted at the same place, take left then right")]
[TestCase("1234567890", "123abc7890", "1237890", "123abc7890", TestName = "Left side modified, right side deleted, take left side")]
[TestCase("1234567890" ,"123567890", "123x567890", "123x567890", TestName = "Left side deleted, right side modified, take left then right")]
[TestCase("1234567890", "123a567890", "123b567890", "123ab567890", TestName = "Both side modified, take left then right")]
Expand Down

0 comments on commit 196c85d

Please sign in to comment.