summaryrefslogtreecommitdiffstats
path: root/pkg/tasks
diff options
context:
space:
mode:
authorcasswedson <58050969+casswedson@users.noreply.github.com>2022-04-03 15:19:15 -0500
committerJesse Duffield <jessedduffield@gmail.com>2022-04-06 08:52:41 +1000
commitb7928042f0fde73b632e115785e1bbe5d8978139 (patch)
treea39564d0d326c85c15d6f6d789f7d4d87b0ddc85 /pkg/tasks
parent3b5a019e1a33bbb9b331d44956f98b2b8c4cd5a9 (diff)
chore: typo hunting ft. codespell
Diffstat (limited to 'pkg/tasks')
-rw-r--r--pkg/tasks/tasks_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/tasks/tasks_test.go b/pkg/tasks/tasks_test.go
index d580c95f5..9bd552162 100644
--- a/pkg/tasks/tasks_test.go
+++ b/pkg/tasks/tasks_test.go
@@ -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)
}
}