From 5f42d41e1c39567730993f05250d6481793a4f4a Mon Sep 17 00:00:00 2001 From: Neil Toronto Date: Sun, 6 Jul 2014 16:50:40 -0400 Subject: [PATCH] Fix array tests after TR change --- pkgs/math-pkgs/math-test/math/tests/array-tests.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/math-pkgs/math-test/math/tests/array-tests.rkt b/pkgs/math-pkgs/math-test/math/tests/array-tests.rkt index 2ed5aff58b..4772c2db83 100644 --- a/pkgs/math-pkgs/math-test/math/tests/array-tests.rkt +++ b/pkgs/math-pkgs/math-test/math/tests/array-tests.rkt @@ -170,7 +170,7 @@ ;; --------------------------------------------------------------------------------------------------- ;; array->vector -(let ([arr (build-array #() (λ (js) 'foo))]) +(let ([arr : (Array Symbol) (build-array #() (λ (js) 'foo))]) (check-equal? (array->vector* arr) 'foo) (check-equal? arr (vector*->array (array->vector* arr) symbol?)))