diff --git a/tests/core/bytes/test_core_bytes.odin b/tests/core/bytes/test_core_bytes.odin index 9074c0205..72390291f 100644 --- a/tests/core/bytes/test_core_bytes.odin +++ b/tests/core/bytes/test_core_bytes.odin @@ -1,45 +1,27 @@ package test_core_bytes import "core:bytes" +import "core:slice" import "core:testing" @test test_index_byte_sanity :: proc(t: ^testing.T) { // We must be able to find the byte at the correct index. - for n in 1..<256 { - data := make([]u8, n) - defer delete(data) - for i in 0..