Skip to content

Commit 68a06ac

Browse files
committed
nit on underscores
Signed-off-by: Scott Nichols <[email protected]>
1 parent d8f858d commit 68a06ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/gate/gate_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/crossplane/crossplane-runtime/pkg/gate"
2727
)
2828

29-
func TestGate_Register(t *testing.T) {
29+
func TestGateRegister(t *testing.T) {
3030
type args struct {
3131
depends []string
3232
}
@@ -89,7 +89,7 @@ func TestGate_Register(t *testing.T) {
8989
}
9090
}
9191

92-
func TestGate_Integration(t *testing.T) {
92+
func TestGateIntegration(t *testing.T) {
9393
type want struct {
9494
called bool
9595
}
@@ -233,7 +233,7 @@ func TestGate_Integration(t *testing.T) {
233233
}
234234
}
235235

236-
func TestGate_Concurrency(t *testing.T) {
236+
func TestGateConcurrency(t *testing.T) {
237237
g := new(gate.Gate[string])
238238

239239
const numGoroutines = 100
@@ -277,7 +277,7 @@ func TestGate_Concurrency(t *testing.T) {
277277
}
278278
}
279279

280-
func TestGate_TypeSafety(t *testing.T) {
280+
func TestGateTypeSafety(t *testing.T) {
281281
intGate := new(gate.Gate[int])
282282

283283
called := false

0 commit comments

Comments
 (0)