Commit 75682ed5 authored by Arash Deshmeh's avatar Arash Deshmeh
Browse files

fix(helm): resolve linter's warning on template command unit tests


Signed-off-by: default avatarArash Deshmeh <adeshmeh@ca.ibm.com>
Showing with 1 addition and 2 deletions
+1 -2
......@@ -160,9 +160,8 @@ func TestTemplateCmd(t *testing.T) {
// had the error we were looking for, this test case is
// done
return
} else {
t.Fatalf("expected err: %q, got: %q", tt.expectError, err)
}
t.Fatalf("expected err: %q, got: %q", tt.expectError, err)
} else if err != nil {
t.Errorf("expected no error, got %v", err)
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment