Skip to content

Commit 15f37f1

Browse files
committed
Fix quote issue in tests.
1 parent 6ef5f4a commit 15f37f1

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

langs/dodger/test/all.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
;; Dupe examples
3333
(check-equal? (run #t) #t)
3434
(check-equal? (run #f) #f)
35-
(check-equal? (run (if #t 1 2)) 1)
36-
(check-equal? (run (if #f 1 2)) 2)
37-
(check-equal? (run (if 0 1 2)) 1)
35+
(check-equal? (run '(if #t 1 2)) 1)
36+
(check-equal? (run '(if #f 1 2)) 2)
37+
(check-equal? (run '(if 0 1 2)) 1)
3838
(check-equal? (run '(if #t 3 4)) 3)
3939
(check-equal? (run '(if #f 3 4)) 4)
4040
(check-equal? (run '(if 0 3 4)) 3)

langs/dupe/test/all.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
;; Dupe examples
3434
(check-equal? (run #t) #t)
3535
(check-equal? (run #f) #f)
36-
(check-equal? (run (if #t 1 2)) 1)
37-
(check-equal? (run (if #f 1 2)) 2)
38-
(check-equal? (run (if 0 1 2)) 1)
36+
(check-equal? (run '(if #t 1 2)) 1)
37+
(check-equal? (run '(if #f 1 2)) 2)
38+
(check-equal? (run '(if 0 1 2)) 1)
3939
(check-equal? (run '(if #t 3 4)) 3)
4040
(check-equal? (run '(if #f 3 4)) 4)
4141
(check-equal? (run '(if 0 3 4)) 3)

langs/evildoer/test/all.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
;; Dupe examples
3939
(check-equal? (run #t) #t)
4040
(check-equal? (run #f) #f)
41-
(check-equal? (run (if #t 1 2)) 1)
42-
(check-equal? (run (if #f 1 2)) 2)
43-
(check-equal? (run (if 0 1 2)) 1)
41+
(check-equal? (run '(if #t 1 2)) 1)
42+
(check-equal? (run '(if #f 1 2)) 2)
43+
(check-equal? (run '(if 0 1 2)) 1)
4444
(check-equal? (run '(if #t 3 4)) 3)
4545
(check-equal? (run '(if #f 3 4)) 4)
4646
(check-equal? (run '(if 0 3 4)) 3)

langs/extort/test/all.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
;; Dupe examples
4040
(check-equal? (run #t) #t)
4141
(check-equal? (run #f) #f)
42-
(check-equal? (run (if #t 1 2)) 1)
43-
(check-equal? (run (if #f 1 2)) 2)
44-
(check-equal? (run (if 0 1 2)) 1)
42+
(check-equal? (run '(if #t 1 2)) 1)
43+
(check-equal? (run '(if #f 1 2)) 2)
44+
(check-equal? (run '(if 0 1 2)) 1)
4545
(check-equal? (run '(if #t 3 4)) 3)
4646
(check-equal? (run '(if #f 3 4)) 4)
4747
(check-equal? (run '(if 0 3 4)) 3)

0 commit comments

Comments
 (0)