adjust covered-cases so that it always returns deterministically
(sorting by the strings in the result)
This commit is contained in:
parent
4e075a1f63
commit
8bec634dcd
|
@ -1238,7 +1238,9 @@
|
|||
(λ (c) (cons (car c) (add1 (cdr c))))))
|
||||
|
||||
(define (covered-cases cov)
|
||||
(hash-map (coverage-counts cov) (λ (k v) v)))
|
||||
(sort (hash-map (coverage-counts cov) (λ (k v) v))
|
||||
string<=?
|
||||
#:key car))
|
||||
|
||||
(define-struct coverage (relation counts))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user