update mzlib contract test suite to recent changes to racket/contract

original commit: 64849bddd2da981fdf3ed99045f3e6d357c9fec8
This commit is contained in:
Robby Findler 2013-03-24 07:24:08 -05:00
parent b18941fd54
commit e9b2767472

View File

@ -4178,7 +4178,7 @@ so that propagation occurs.
(test-name 'printable/c printable/c)
(test-name '(or/c 'a 'b 'c) (symbols 'a 'b 'c))
(test-name '(or/c 1 2 3) (one-of/c 1 2 3))
(test-name '(one-of/c '() 'x 1 #f #\a (void) (letrec ([x x]) x))
(test-name '(or/c '() 'x 1 #f #\a void? undefined?)
(one-of/c '() 'x 1 #f #\a (void) (letrec ([x x]) x)))
(test-name '(subclass?/c c%)