summaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
authorGusted <williamzijl7@hotmail.com>2022-06-04 21:43:25 +0000
committerGitHub <noreply@github.com>2022-06-04 17:43:25 -0400
commitabb7d4ae5d1bb96e89a87de475a0453ce85f6404 (patch)
treece0365429db41c234f90677e770b43891c85bcb9 /integrations
parent090d89e0f9db2bbbe6bc63d887647e2f898c0a18 (diff)
downloadgitea-abb7d4ae5d1bb96e89a87de475a0453ce85f6404.tar.gz
gitea-abb7d4ae5d1bb96e89a87de475a0453ce85f6404.zip
Fix typo (#19889)
Diffstat (limited to 'integrations')
-rw-r--r--integrations/testlogger.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/testlogger.go b/integrations/testlogger.go
index 70efa95cce..373ad80752 100644
--- a/integrations/testlogger.go
+++ b/integrations/testlogger.go
@@ -126,7 +126,7 @@ func PrintCurrentTest(t testing.TB, skip ...int) func() {
if log.CanColorStdout {
fmt.Fprintf(os.Stdout, "+++ %s is a slow test (took %v)\n", fmt.Formatter(log.NewColoredValue(t.Name(), log.Bold, log.FgYellow)), fmt.Formatter(log.NewColoredValue(took, log.Bold, log.FgYellow)))
} else {
- fmt.Fprintf(os.Stdout, "+++ %s is a slow tets (took %v)\n", t.Name(), took)
+ fmt.Fprintf(os.Stdout, "+++ %s is a slow test (took %v)\n", t.Name(), took)
}
}
timer := time.AfterFunc(slowFlush, func() {