From 4cb4f16096abb9fee09375fa3d081ed667828b00 Mon Sep 17 00:00:00 2001 From: ikpil Date: Sun, 21 Jan 2024 19:10:54 +0900 Subject: [PATCH] fix --- test/DotRecast.Core.Test/RcRentedArrayTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DotRecast.Core.Test/RcRentedArrayTest.cs b/test/DotRecast.Core.Test/RcRentedArrayTest.cs index 1cf67c8..375e2b3 100644 --- a/test/DotRecast.Core.Test/RcRentedArrayTest.cs +++ b/test/DotRecast.Core.Test/RcRentedArrayTest.cs @@ -29,7 +29,7 @@ public class RcRentedArrayTest { int length = (int)(rand.Next() * 2048); var values = RandomValues(length); - using var array = RcRentedArray.RentDisposableArray(length); + using var array = RcRentedArray.RentDisposableArray(length); for (int i = 0; i < array.Length; ++i) {