Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[master] Fix spelling errors #2873

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/reconciler/taskrun/taskrun_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ func TestReconcileInvalidTaskRuns(t *testing.T) {
t.Fatalf("Expected to see error when reconciling invalid TaskRun but none")
}
if !controller.IsPermanentError(reconcileErr) {
t.Fatalf("Expected to see a permanet error when reconciling invalid TaskRun, got %s instead", reconcileErr)
t.Fatalf("Expected to see a permanent error when reconciling invalid TaskRun, got %s instead", reconcileErr)
}

// Check actions and events
Expand Down Expand Up @@ -2524,7 +2524,7 @@ func TestReconcileWorkspaceMissing(t *testing.T) {
t.Fatalf("expected error reconciling invalid TaskRun but got none")
}
if !controller.IsPermanentError(err) {
t.Fatalf("Expected to see a permanet error when reconciling invalid TaskRun, got %s instead", err)
t.Fatalf("Expected to see a permanent error when reconciling invalid TaskRun, got %s instead", err)
}

tr, err := clients.Pipeline.TektonV1beta1().TaskRuns(taskRun.Namespace).Get(taskRun.Name, metav1.GetOptions{})
Expand Down Expand Up @@ -2615,7 +2615,7 @@ func TestReconcileTaskResourceResolutionAndValidation(t *testing.T) {
t.Fatalf("Expected to see error when reconciling invalid TaskRun but none")
}
if !controller.IsPermanentError(reconcileErr) {
t.Fatalf("Expected to see a permanet error when reconciling invalid TaskRun, got %s instead", reconcileErr)
t.Fatalf("Expected to see a permanent error when reconciling invalid TaskRun, got %s instead", reconcileErr)
}

tr, err := clients.Pipeline.TektonV1beta1().TaskRuns(tt.d.TaskRuns[0].Namespace).Get(tt.d.TaskRuns[0].Name, metav1.GetOptions{})
Expand Down