Fix integration test after perm mutex bugfix

This commit is contained in:
Denis Arh
2019-09-23 19:44:19 +02:00
parent 861afe23ee
commit 84be729d97
+4 -1
View File
@@ -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{},
},
}
}