Fix integration test after perm mutex bugfix
This commit is contained in:
@@ -4,6 +4,7 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
"strings"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type (
|
||||
@@ -68,6 +69,8 @@ func (svc *TestService) String() (out string) {
|
||||
|
||||
func NewTestService() *TestService {
|
||||
return &TestService{
|
||||
service: service{},
|
||||
service: service{
|
||||
l: &sync.Mutex{},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user