mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
Fix unit tests
This commit is contained in:
parent
709e0cbdca
commit
22a68d1097
1 changed files with 2 additions and 2 deletions
|
@ -203,11 +203,11 @@
|
|||
(assert:equal "" (eq? 'a-1 'a-1) #t)
|
||||
(assert:equal "" (eq? (string->symbol "aa") 'aa) #t)
|
||||
(assert:equal "" (eq? 0.0 0.0) #f)
|
||||
(assert:equal "" (eq? 33333333333333 3333333333333333) #f)
|
||||
(assert:equal "" (eq? 33333333333333 33333333333333) #f)
|
||||
(assert:equal "" (eqv? 'a-1 'a-1) #t)
|
||||
(assert:equal "" (eqv? (string->symbol "aa") 'aa) #t)
|
||||
(assert:equal "" (eqv? 0.0 0.0) #t)
|
||||
(assert:equal "" (eqv? 33333333333333 3333333333333333) #t)
|
||||
(assert:equal "" (eqv? 33333333333333 33333333333333) #t)
|
||||
(assert:equal "" (equal? (string->symbol "aa") 'aa) #t)
|
||||
|
||||
;; Map
|
||||
|
|
Loading…
Add table
Reference in a new issue