Skip to content

Commit

Permalink
trivial - fix typo (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffscottbrown authored Feb 5, 2024
1 parent 6403912 commit ef1ecc2
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 @@ -24,7 +24,7 @@ class MathServiceSpec extends Specification {
MathService mathService // Dependency injection is used to supply the system under test
@Unroll
void "should compute #num times 4"() { // This is the test case. #num will be replaces by the values defined in the where: block
void "should compute #num times 4"() { // This is the test case. #num will be replaced by the values defined in the where: block
when:
def result = mathService.compute(num)
Expand Down

0 comments on commit ef1ecc2

Please sign in to comment.