Merge pull request #5650 from laurazard/cleanup-tests-1

tests: cleanup table test names
This commit is contained in:
Sebastiaan van Stijn
2024-11-27 18:35:15 +01:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ func TestValidateOutputPath(t *testing.T) {
}
func TestPromptForInput(t *testing.T) {
t.Run("case=cancelling the context", func(t *testing.T) {
t.Run("cancelling the context", func(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)
reader, _ := io.Pipe()
@ -116,7 +116,7 @@ func TestPromptForInput(t *testing.T) {
}
})
t.Run("case=user input should be properly trimmed", func(t *testing.T) {
t.Run("user input should be properly trimmed", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
t.Cleanup(cancel)
@ -196,7 +196,7 @@ func TestPromptForConfirmation(t *testing.T) {
return promptReader.Close()
}, promptResult{false, nil}},
} {
t.Run("case="+tc.desc, func(t *testing.T) {
t.Run(tc.desc, func(t *testing.T) {
notifyCtx, notifyCancel := signal.NotifyContext(ctx, syscall.SIGINT, syscall.SIGTERM)
t.Cleanup(notifyCancel)

View File

@ -182,7 +182,7 @@ func TestPromptExitCode(t *testing.T) {
}
for _, tc := range testCases {
t.Run("case="+tc.name, func(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
buf := new(bytes.Buffer)