Skip to content

Commit

Permalink
Fix typo in assert message in README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
terzerm committed Apr 9, 2017
1 parent e2090e4 commit cf19b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class UnrollMethodDataTest {
@Spockito.Ref("Angle sum") int degrees,
@Spockito.Ref("Object") String name) {
Assert.assertTrue("There should be 3 or more vertices", 3 <= n);
Assert.assertEquals("Angular sum of is wrong for: " + name, degrees, (n-2)*180);
Assert.assertEquals("Angular sum is wrong for: " + name, degrees, (n-2)*180);
}
}
```
Expand Down

0 comments on commit cf19b04

Please sign in to comment.