forked from TrueCloudLab/frostfs-node
[#895] test: Fix NewLogger arguments list
`debug` is always true. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
a8e52ef7aa
commit
f1b2b8bffa
32 changed files with 60 additions and 65 deletions
|
@ -270,7 +270,7 @@ func TestGetLocalOnly(t *testing.T) {
|
|||
|
||||
newSvc := func(storage *testStorage) *Service {
|
||||
return &Service{
|
||||
log: test.NewLogger(t, true),
|
||||
log: test.NewLogger(t),
|
||||
localStorage: storage,
|
||||
}
|
||||
}
|
||||
|
@ -532,7 +532,7 @@ func TestGetRemoteSmall(t *testing.T) {
|
|||
const curEpoch = 13
|
||||
|
||||
return &Service{
|
||||
log: test.NewLogger(t, true),
|
||||
log: test.NewLogger(t),
|
||||
localStorage: newTestStorage(),
|
||||
traverserGenerator: &testTraverserGenerator{
|
||||
c: cnr,
|
||||
|
@ -1663,7 +1663,7 @@ func TestGetFromPastEpoch(t *testing.T) {
|
|||
const curEpoch = 13
|
||||
|
||||
svc := &Service{
|
||||
log: test.NewLogger(t, true),
|
||||
log: test.NewLogger(t),
|
||||
localStorage: newTestStorage(),
|
||||
epochSource: testEpochReceiver(curEpoch),
|
||||
traverserGenerator: &testTraverserGenerator{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue