From 7aaa415777775b67706ef70769562504f29bdab9 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Tue, 30 Jun 2026 13:26:23 -0400 Subject: [PATCH] test: Fixed leak in test. --- table_test.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/table_test.odin b/table_test.odin index 9330669..9831498 100644 --- a/table_test.odin +++ b/table_test.odin @@ -35,6 +35,7 @@ test_ansi_aware_width_multiple_escape_sequences :: proc(t: ^testing.T) { colorize(.Heading, "b", disable = false), colorize(.Heading, "c", disable = false), }, + context.temp_allocator, ) testing.expect_value(t, ansi_aware_width(colored), 3) }