diff --git a/docs/testing.md b/docs/testing.md index 9d42a6cb0..eb64b0e86 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -33,10 +33,10 @@ function functionUnderTest(Shescape) { return args; } -// Test good conditions +// Test good condition assert.ok(functionUnderTest(Stubscape)); -// Test bad conditions +// Test bad condition assert.throws(() => functionUnderTest(Throwscape)); ```