Skip to content

Commit fac9b78

Browse files
author
OpenShift Bot
authored
Merge pull request #12596 from jingangxiaobai/modify_ut_file_comment
Merged by openshift-bot
2 parents 06f30d8 + 637fb6e commit fac9b78

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/diagnostics/cluster/aggregated_logging/clusterrolebindings_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func (f *fakeRoleBindingDiagnostic) addBinding(name string, namespace string) {
3737
f.fakeClusterRoleBinding.Subjects = append(f.fakeClusterRoleBinding.Subjects, ref)
3838
}
3939

40-
//test error when client error
40+
// Test error when client error
4141
func TestCheckClusterRoleBindingsWhenErrorFromClientRetrievingRoles(t *testing.T) {
4242
d := newFakeRoleBindingDiagnostic(t)
4343
d.err = errors.New("client error")

pkg/diagnostics/cluster/aggregated_logging/deploymentconfigs_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func (f *fakeDeploymentConfigsDiagnostic) pods(project string, options kapi.List
7777
return &f.fakePods, nil
7878
}
7979

80-
//test client error listing dcs
80+
// Test client error listing dcs
8181
func TestCheckDcWhenErrorResponseFromClientRetrievingDc(t *testing.T) {
8282
d := newFakeDeploymentConfigsDiagnostic(t)
8383
d.clienterrors[testDcKey] = errors.New("error")

pkg/diagnostics/cluster/aggregated_logging/routes_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestRouteWhenZeroRoutesAvailable(t *testing.T) {
7777
d.dumpMessages()
7878
}
7979

80-
//test error route != accepted
80+
// Test error route != accepted
8181
func TestRouteWhenRouteNotAccepted(t *testing.T) {
8282
d := newFakeRoutesDiagnostic(t)
8383
d.addRouteWith(routesapi.RouteExtendedValidationFailed, kapi.ConditionTrue, "", "")

pkg/diagnostics/cluster/aggregated_logging/services_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (f *fakeServicesDiagnostic) addServiceNamed(name string) {
4848
f.list.Items = append(f.list.Items, kapi.Service{ObjectMeta: meta})
4949
}
5050

51-
// test error from client
51+
// Test error from client
5252
func TestCheckingServicesWhenFailedResponseFromClient(t *testing.T) {
5353
d := newFakeServicesDiagnostic(t)
5454
d.err = errors.New("an error")

0 commit comments

Comments
 (0)