diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-06-04 21:43:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 17:43:25 -0400 |
commit | abb7d4ae5d1bb96e89a87de475a0453ce85f6404 (patch) | |
tree | ce0365429db41c234f90677e770b43891c85bcb9 /models/migrations | |
parent | 090d89e0f9db2bbbe6bc63d887647e2f898c0a18 (diff) | |
download | gitea-abb7d4ae5d1bb96e89a87de475a0453ce85f6404.tar.gz gitea-abb7d4ae5d1bb96e89a87de475a0453ce85f6404.zip |
Fix typo (#19889)
Diffstat (limited to 'models/migrations')
-rw-r--r-- | models/migrations/testlogger_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/migrations/testlogger_test.go b/models/migrations/testlogger_test.go index c087e311c2..adbf19c0db 100644 --- a/models/migrations/testlogger_test.go +++ b/models/migrations/testlogger_test.go @@ -111,7 +111,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() { |