Skip to content

Commit

Permalink
Merge pull request #7 from jeosol/master
Browse files Browse the repository at this point in the history
Fixes to documentation strings.
  • Loading branch information
rpgoldman authored Oct 28, 2021
2 parents 2da7306 + ee618c6 commit 624670e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test-names, and get the package name from here.")
:documentation "Expected number of tests to be run when you invoke test-op on this system.
If supplied and non-NIL, then when running the test-op, we will fail if the actual number of checks run does
not match the expected number expected number. See the FiveAM manual for the definition of a check and how
not match the expected number. See the FiveAM manual for the definition of a check and how
they are counted.")))

(defclass package-inferred-fiveam-tester-system (package-inferred-system fiveam-tester-system)
Expand Down Expand Up @@ -107,7 +107,7 @@ not match the expected number."))
results))

(defun verify-num-checks (results tester-system)
"Throw an error if TESTER-SYSTEM specifies aan expected number of checks to which RESULTS does not conform."
"Throw an error if TESTER-SYSTEM specifies an expected number of checks to which RESULTS does not conform."
(if-let ((expected (num-checks tester-system))
(actual (length results)))
(unless (= actual expected)
Expand Down

0 comments on commit 624670e

Please sign in to comment.