From 527b233e45883e8e2a77ee45c1c91cae1de02c6f Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Tue, 21 Jun 2016 16:42:18 -0400 Subject: [PATCH] Remove pconvert dependency in tests The test just tests whether struct properties work and it's not important what the precise property is. --- typed-racket-test/info.rkt | 1 - typed-racket-test/succeed/custom-printer.rkt | 2 -- 2 files changed, 3 deletions(-) diff --git a/typed-racket-test/info.rkt b/typed-racket-test/info.rkt index 7774c11c..a4368ae4 100644 --- a/typed-racket-test/info.rkt +++ b/typed-racket-test/info.rkt @@ -10,7 +10,6 @@ "2d" "rackunit-lib" "racket-index" - "pconvert-lib" "compatibility-lib" "math-lib")) (define build-deps '("scheme-lib" diff --git a/typed-racket-test/succeed/custom-printer.rkt b/typed-racket-test/succeed/custom-printer.rkt index 50675788..1b3844c8 100644 --- a/typed-racket-test/succeed/custom-printer.rkt +++ b/typed-racket-test/succeed/custom-printer.rkt @@ -2,10 +2,8 @@ ;; This test ensures that there is some way to customize struct ;; printouts -- if properties are removed or changed, there should be ;; some way to do something equivalent to what's done in this test. -(require mzlib/pconvert-prop) (struct: foo () #:property prop:custom-print-quotable 'never - #:property prop:print-convert-constructor-name 'foo #:property prop:custom-write (λ (x p w?) (display "#foo" p))) (unless (equal? "#foo #foo" (format "~a ~s" (foo) (foo))) (error "bad output"))