1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

chore: typo hunting ft. codespell

This commit is contained in:
casswedson
2022-04-03 15:19:15 -05:00
committed by Jesse Duffield
parent 3b5a019e1a
commit b7928042f0
11 changed files with 17 additions and 17 deletions

View File

@ -69,7 +69,7 @@ func TestNewCmdTaskInstantStop(t *testing.T) {
expectedContent := ""
actualContent := writer.String()
if actualContent != expectedContent {
t.Errorf("expected writer to receive the following content: \n%s\n. But instead it recevied: %s", expectedContent, actualContent)
t.Errorf("expected writer to receive the following content: \n%s\n. But instead it received: %s", expectedContent, actualContent)
}
}
@ -131,6 +131,6 @@ func TestNewCmdTask(t *testing.T) {
expectedContent := "prefix\ntest\n"
actualContent := writer.String()
if actualContent != expectedContent {
t.Errorf("expected writer to receive the following content: \n%s\n. But instead it recevied: %s", expectedContent, actualContent)
t.Errorf("expected writer to receive the following content: \n%s\n. But instead it received: %s", expectedContent, actualContent)
}
}