File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ type GameRules struct {
15
15
mock.Mock
16
16
}
17
17
18
- // BombTime is a mock-implementation of GameRules.ByUserID ().
18
+ // BombTime is a mock-implementation of GameRules.BombTime ().
19
19
func (gr * GameRules ) BombTime () (time.Duration , error ) {
20
20
return gr .Called ().Get (0 ).(time.Duration ), gr .Called ().Get (0 ).(error )
21
21
}
22
22
23
- // FreezeTime is a mock-implementation of GameRules.ByUserID ().
23
+ // FreezeTime is a mock-implementation of GameRules.FreezeTime ().
24
24
func (gr * GameRules ) FreezeTime () (time.Duration , error ) {
25
25
return gr .Called ().Get (0 ).(time.Duration ), gr .Called ().Get (0 ).(error )
26
26
}
27
27
28
- // RoundTime is a mock-implementation of GameRules.ByUserID ().
28
+ // RoundTime is a mock-implementation of GameRules.RoundTime ().
29
29
func (gr * GameRules ) RoundTime () (time.Duration , error ) {
30
30
return gr .Called ().Get (0 ).(time.Duration ), gr .Called ().Get (0 ).(error )
31
31
}
You can’t perform that action at this time.
0 commit comments