Skip to content

Commit 310200b

Browse files
authored
Fix order of actual and expected
1 parent c0f5cc1 commit 310200b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/languages/csharp/nunit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AddTest
3232
[Test, Description("should add two numbers")]
3333
public void ShouldAddTwoNumbers()
3434
{
35-
Assert.That(3, Is.EqualTo(Challenge.Add(1, 2)));
35+
Assert.That(Challenge.Add(1, 2), Is.EqualTo(3), "1 + 2 should equal 3");
3636
}
3737
}
3838
```

0 commit comments

Comments
 (0)