Skip to content

Commit bfa4abd

Browse files
committed
Rename
1 parent c56db0d commit bfa4abd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/test-rules.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
[(list op args ... extra)
2828
#:when (string-contains? (~a op) "sound")
2929
(define op* (string->symbol (substring (symbol->string (car expr)) (string-length "sound-"))))
30-
(cons op* (map drop-unsound args))]
31-
[(list op args ...) (cons op (map drop-unsound args))]
30+
(cons op* (map drop-sound args))]
31+
[(list op args ...) (cons op (map drop-sound args))]
3232
[_ expr]))
3333

3434
(define (check-rule test-rule)
@@ -38,7 +38,7 @@
3838
(match-define (list pts exs1 exs2)
3939
(parameterize ([*num-points* (num-test-points)]
4040
[*max-find-range-depth* 0])
41-
(sample-points '(TRUE) (list p1 (drop-unsound p2)) (list ctx ctx))))
41+
(sample-points '(TRUE) (list p1 (drop-sound p2)) (list ctx ctx))))
4242

4343
(for ([pt (in-list pts)]
4444
[v1 (in-list exs1)]

0 commit comments

Comments
 (0)