Skip to content

Commit 2c4339d

Browse files
committed
refactor: improve monorepo test case naming
Enhance test case names to clearly indicate testing of monorepo setup with multiple go.mod and golangci-yaml files, identifying both foo and bar module test cases separately for better clarity and documentation.
1 parent 0dbb041 commit 2c4339d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

handler_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func TestLangHandler_lint_Integration(t *testing.T) {
167167
},
168168
},
169169
{
170-
name: "monorepo (foo)",
170+
name: "monorepo with multiple go.mod and .golangci.yaml files (foo module)",
171171
h: &langHandler{
172172
logger: newStdLogger(false),
173173
command: command,
@@ -195,7 +195,7 @@ func TestLangHandler_lint_Integration(t *testing.T) {
195195
},
196196
},
197197
{
198-
name: "monorepo (bar)",
198+
name: "monorepo with multiple go.mod and .golangci.yaml files (bar module)",
199199
h: &langHandler{
200200
logger: newStdLogger(false),
201201
command: command,

0 commit comments

Comments
 (0)