Skip to content

Commit 4ac8a60

Browse files
committed
test: fix formatting
1 parent 6a8953d commit 4ac8a60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

game_state_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ func TestParticipants_FindByHandle(t *testing.T) {
123123

124124
ptcps := Participants{
125125
playersByEntityID: map[int]*common.Player{
126-
3000&entityHandleIndexMask: pl,
126+
3000 & entityHandleIndexMask: pl,
127127
},
128128
}
129129

130-
found := ptcps .FindByHandle(3000)
130+
found := ptcps.FindByHandle(3000)
131131

132132
assert.Equal(t, pl, found)
133133
}
@@ -137,7 +137,7 @@ func TestParticipants_FindByHandle_InvalidEntityHandle(t *testing.T) {
137137
pl.Team = common.TeamTerrorists
138138
ptcps := Participants{
139139
playersByEntityID: map[int]*common.Player{
140-
invalidEntityHandle&entityHandleIndexMask: pl,
140+
invalidEntityHandle & entityHandleIndexMask: pl,
141141
},
142142
}
143143

0 commit comments

Comments
 (0)