From c8f2603d3eb6f47ab772f83ecd0a5758d18e7b59 Mon Sep 17 00:00:00 2001 From: Tohei Ichikawa Date: Sat, 10 Jan 2026 03:35:33 -0500 Subject: [PATCH] Fix test name, add PR link, use tabs --- tests/internal/test_imported_proc_groups.odin | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/internal/test_imported_proc_groups.odin b/tests/internal/test_imported_proc_groups.odin index 3f5b01fb3..e91af4bf5 100644 --- a/tests/internal/test_imported_proc_groups.odin +++ b/tests/internal/test_imported_proc_groups.odin @@ -3,8 +3,9 @@ package test_internal import "core:testing" import "test_imported_proc_groups" +// https://github.com/odin-lang/Odin/pull/6119 @test -test_ :: proc(t: ^testing.T) { - use_proc :: proc(proc()) { } - use_proc(test_imported_proc_groups.proc_group) +test_use_imported_proc_group_as_argument :: proc(t: ^testing.T) { + use_proc :: proc(proc()) { } + use_proc(test_imported_proc_groups.proc_group) }