From a40d1363de8c379c6af9dea3fb4842581bdb572d Mon Sep 17 00:00:00 2001 From: Noah Stride Date: Tue, 31 Oct 2023 16:27:49 +0000 Subject: [PATCH] Fix go imports --- event-handler/cli_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/event-handler/cli_test.go b/event-handler/cli_test.go index ff01bc2d6..8b7ea27e6 100644 --- a/event-handler/cli_test.go +++ b/event-handler/cli_test.go @@ -1,12 +1,13 @@ package main import ( - "github.com/alecthomas/kong" - "github.com/stretchr/testify/require" "os" "path" "testing" "time" + + "github.com/alecthomas/kong" + "github.com/stretchr/testify/require" ) // StartCmdConfig is mostly to test that the TOML file parsing works as