Fix test when run without raco in path.

This commit is contained in:
Sam Tobin-Hochstadt 2015-12-30 15:57:56 -05:00
parent a0d78ecadd
commit 062ac9d3a4

View File

@ -33,5 +33,6 @@
(check-equal?
(parameterize ([current-output-port (open-output-nowhere)])
(parameterize ([current-error-port (current-output-port)])
(system/exit-code (format "raco test ~a" me))))
(system*/exit-code (find-system-path 'exec-file)
"-l" "raco" "--" "test" me)))
1))]))