1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 11:02:41 +03:00

Use print instead of printf when there are no arguments

This commit is contained in:
Stefan Haller
2024-08-23 20:11:28 +02:00
parent d712c2f199
commit 24841f22f1
3 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ func RunCLI(testNames []string, slow bool, sandbox bool, waitForDebugger bool, r
func runAndPrintFatalError(test *components.IntegrationTest, f func() error) {
if err := f(); err != nil {
log.Fatalf(err.Error())
log.Fatal(err.Error())
}
}