Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
397bc6e9
Commit
397bc6e9
authored
Jan 29, 2016
by
vaikas-google
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #202 from shawnps/patch-5
pass err to Fatalf
parents
d9af42c9
105fa8ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
kubernetesutil_test.go
util/kubernetesutil_test.go
+1
-1
No files found.
util/kubernetesutil_test.go
View file @
397bc6e9
...
@@ -143,7 +143,7 @@ func testConversion(t *testing.T, object []byte, expected []byte) {
...
@@ -143,7 +143,7 @@ func testConversion(t *testing.T, object []byte, expected []byte) {
result
,
err
:=
ParseKubernetesObject
(
object
)
result
,
err
:=
ParseKubernetesObject
(
object
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatalf
(
"ParseKubernetesObject failed: %v"
)
t
.
Fatalf
(
"ParseKubernetesObject failed: %v"
,
err
)
}
}
// Since the object name gets created on the fly, we have to rejigger the returned object
// Since the object name gets created on the fly, we have to rejigger the returned object
// slightly to make sure the DeepEqual works as expected.
// slightly to make sure the DeepEqual works as expected.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment