aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-12-09 13:27:10 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-12-09 13:27:10 +0100
commitbff5f711066655f0250085d27109deafeefe34ba (patch)
treea34564d588b163ba95b41bfc12b47a7a4f64e2b1 /client
parent800c53c580717f7f1d8bcc02d31235ac6d3673d2 (diff)
Remove debug printing
Diffstat (limited to 'client')
-rw-r--r--client/go/cmd/test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/client/go/cmd/test.go b/client/go/cmd/test.go
index b8e028ee763..ec445de2b9d 100644
--- a/client/go/cmd/test.go
+++ b/client/go/cmd/test.go
@@ -420,7 +420,6 @@ func validateRelativePath(relPath string) error {
return fmt.Errorf("path must be relative, but was '%s'", relPath)
}
cleanPath := filepath.Clean(relPath)
- fmt.Println(cleanPath)
if strings.HasPrefix(cleanPath, "../../../") {
return fmt.Errorf("path may not point outside src/test/application, but '%s' does", relPath)
}