diff options
Diffstat (limited to 'tests/frame.scm')
-rw-r--r-- | tests/frame.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/frame.scm b/tests/frame.scm index 5dd4813..268601a 100644 --- a/tests/frame.scm +++ b/tests/frame.scm @@ -167,7 +167,9 @@ (list (make-text-frame "Hel") (make-text-frame "lo")))) +(define test-runner (test-runner-current)) + (test-end "frame") -(exit (= (test-runner-fail-count (test-runner-current)) 0)) +(exit (= (test-runner-fail-count test-runner) 0)) |