From 8d4ded66dda0f467be4cc0329d74e777eb0b46cd Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 25 Aug 2012 18:38:44 -0700 Subject: [PATCH] specialized-arrays: Don't leak in unit test. --- basis/specialized-arrays/specialized-arrays-tests.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/specialized-arrays/specialized-arrays-tests.factor b/basis/specialized-arrays/specialized-arrays-tests.factor index 534d6c6617..263e0f72bb 100644 --- a/basis/specialized-arrays/specialized-arrays-tests.factor +++ b/basis/specialized-arrays/specialized-arrays-tests.factor @@ -34,7 +34,7 @@ SPECIALIZED-ARRAYS: bool uchar ushort char uint float ulonglong ; [ B{ 210 4 1 } ushort cast-array ] must-fail [ { 3 1 3 3 7 } ] [ - int-array{ 3 1 3 3 7 } malloc-byte-array 5 int >array + int-array{ 3 1 3 3 7 } malloc-byte-array [ 5 int >array ] with-disposal ] unit-test [ float-array{ 0x1.222,222p0 0x1.111,112p0 } ]