aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-04 10:58:37 -0400
committerGravatar Peter McGoron 2025-08-04 10:58:37 -0400
commit90fa6934795f25561ca266f443b82d12ddc2c474 (patch)
tree184b67b84e44dfe515f0a2d79429fdbbdad21ba5 /tests
parentrestructure (diff)
fix failing skipped tests
Diffstat (limited to '')
-rw-r--r--tests/impl.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/impl.scm b/tests/impl.scm
index 9a1ad7f..bae066a 100644
--- a/tests/impl.scm
+++ b/tests/impl.scm
@@ -322,11 +322,11 @@
(test-set! 'success? #f)))))
(inspect-test-info values)))
;; TODO: fix failing
- (test-skip-all
- (test-eqv "passed number" 2 (dict-ref dto dict 'passed))
- (test-eqv "tests number" 4 (dict-ref dto dict 'tests))
- (test-eqv "failed number" 1 (dict-ref dto dict 'failed))
- (test-eqv "skipped number" 1 (dict-ref dto dict 'skipped))))
+ (begin
+ (test-eqv "passed number" 2 (dict-ref dto dict 'passed))
+ (test-eqv "tests number" 4 (dict-ref dto dict 'tests))
+ (test-eqv "failed number" 1 (dict-ref dto dict 'failed))
+ (test-eqv "skipped number" 1 (dict-ref dto dict 'skipped))))
(with-test-assert "nested groups"
(define inner-dict #f)
(define inner-dto #f)