style: refactor codebase for improved consistency and clarity

- Reorder imports in `jenkins_test.go` and `plugin_test.go` to move `assert` import to the end
- Remove unnecessary empty line in `plugin.go`

Signed-off-by: appleboy <appleboy.tw@gmail.com>
This commit is contained in:
appleboy
2024-10-04 15:22:05 +08:00
parent f932a0ef24
commit 4f822500f2
3 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
package main
import (
"github.com/stretchr/testify/assert"
"testing"
"github.com/stretchr/testify/assert"
)
func TestMissingConfig(t *testing.T) {