test: use 'any' instead of 'interface{}'

Co-Authored-By: sketch <hello@sketch.dev>
Change-ID: s0a5c6716b6ab25a7k
diff --git a/test/timeout_test.go b/test/timeout_test.go
index 2330d93..87ab10a 100644
--- a/test/timeout_test.go
+++ b/test/timeout_test.go
@@ -17,7 +17,7 @@
 	cmd := `echo "Starting command..."; echo "This should appear in partial output"; sleep 5; echo "This shouldn't appear"`
 
 	// Prepare the input with a very short timeout
-	input := map[string]interface{}{
+	input := map[string]any{
 		"command": cmd,
 		"timeout": "1s", // Very short timeout to trigger the timeout case
 	}