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?)))