Skip to content

Commit dcbc40b

Browse files
removed old debug logs
1 parent 7f23fc9 commit dcbc40b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tools/pmdConfigCreator_test.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package tools
22

33
import (
44
"encoding/xml"
5-
"fmt"
65
"os"
76
"path/filepath"
87
"strings"
@@ -295,9 +294,6 @@ func TestNonEmptyParameterValue(t *testing.T) {
295294

296295
obtainedConfig := CreatePmdConfig(config)
297296

298-
// Debug output
299-
fmt.Printf("Generated XML:\n%s\n", obtainedConfig)
300-
301297
var ruleset PMDRuleset
302298
err := xml.Unmarshal([]byte(obtainedConfig), &ruleset)
303299
assert.NoError(t, err)
@@ -342,12 +338,7 @@ func TestExactJsonStructure(t *testing.T) {
342338
},
343339
}
344340

345-
fmt.Println("Test input:")
346-
fmt.Printf("Parameters: %+v\n", config[0].Parameters)
347-
348341
obtainedConfig := CreatePmdConfig(config)
349-
fmt.Println("Generated XML:")
350-
fmt.Println(obtainedConfig)
351342

352343
var ruleset PMDRuleset
353344
err := xml.Unmarshal([]byte(obtainedConfig), &ruleset)

0 commit comments

Comments
 (0)