Skip to content

Commit

Permalink
Merge pull request #10837 from guangxuli/modify_test_case_err_info
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot authored Sep 22, 2016
2 parents 1773cc0 + b169798 commit 930c6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/build/controller/strategy/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ func TestTrustedMergeEnvWithoutDuplicates(t *testing.T) {
t.Errorf("Expected output env 'foo' to have value 'test', got %+v", output[0])
}
if output[1].Name != "BUILD_LOGLEVEL" {
t.Errorf("Expected output to have env 'BUILD_LOGLEVEL', got %+v", output[0])
t.Errorf("Expected output to have env 'BUILD_LOGLEVEL', got %+v", output[1])
}
if output[1].Value != "loglevel" {
t.Errorf("Expected output env 'foo' to have value 'loglevel', got %+v", output[0])
t.Errorf("Expected output env 'BUILD_LOGLEVEL' to have value 'loglevel', got %+v", output[1])
}
}

Expand Down

0 comments on commit 930c6f3

Please sign in to comment.