aboutsummaryrefslogtreecommitdiffstats
path: root/tests/integration
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/integration_test.go1
-rw-r--r--tests/integration/repo_test.go1
2 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/integration_test.go b/tests/integration/integration_test.go
index 33a815b154..fbe90ecf78 100644
--- a/tests/integration/integration_test.go
+++ b/tests/integration/integration_test.go
@@ -1,6 +1,7 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
+//nolint:forbidigo
package integration
import (
diff --git a/tests/integration/repo_test.go b/tests/integration/repo_test.go
index f2bc04864a..83cbaa1789 100644
--- a/tests/integration/repo_test.go
+++ b/tests/integration/repo_test.go
@@ -354,7 +354,6 @@ func TestViewRepoDirectoryReadme(t *testing.T) {
htmlDoc := NewHTMLParser(t, resp.Body)
_, exists := htmlDoc.doc.Find(".file-view").Attr("class")
- fmt.Printf("%s", resp.Body)
assert.False(t, exists, "README should not have rendered")
})