pull/86/head
Karolis Rusenas 2017-08-08 21:55:36 +01:00
parent c7effe9c2e
commit 47a6ae9d25
1 changed files with 4 additions and 4 deletions

View File

@ -460,7 +460,7 @@ func TestGetImpactedTwoContainersInSameDeployment(t *testing.T) {
}
if len(deps) != 1 {
t.Errorf("expected to find 1 deployment but found %s", len(deps))
t.Errorf("expected to find 1 deployment but found %d", len(deps))
}
found := false
@ -557,7 +557,7 @@ func TestGetImpactedTwoSameContainersInSameDeployment(t *testing.T) {
}
if len(deps) != 1 {
t.Errorf("expected to find 1 deployment but found %s", len(deps))
t.Errorf("expected to find 1 deployment but found %d", len(deps))
}
found := false
@ -652,7 +652,7 @@ func TestGetImpactedUntaggedImage(t *testing.T) {
}
if len(deps) != 1 {
t.Errorf("expected to find 1 deployment but found %s", len(deps))
t.Errorf("expected to find 1 deployment but found %d", len(deps))
}
found := false
@ -748,7 +748,7 @@ func TestGetImpactedUntaggedOneImage(t *testing.T) {
}
if len(deps) != 2 {
t.Errorf("expected to find 2 deployment but found %s", len(deps))
t.Errorf("expected to find 2 deployment but found %d", len(deps))
}
found := false