Browse Source

modules/log: remove noop written variables (#10182)

Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
tags/v1.10.5
Lars Lehtonen 4 years ago
parent
commit
0754ceca5b
No account linked to committer's email address
1 changed files with 0 additions and 8 deletions
  1. 0
    8
      modules/log/conn_test.go

+ 0
- 8
modules/log/conn_test.go View File

@@ -27,8 +27,6 @@ func listenReadAndClose(t *testing.T, l net.Listener, expected string) {
}

func TestConnLogger(t *testing.T) {
var written []byte

protocol := "tcp"
address := ":3099"

@@ -79,8 +77,6 @@ func TestConnLogger(t *testing.T) {
}()
wg.Wait()

written = written[:0]

event.level = WARN
expected = fmt.Sprintf("%s%s %s:%d:%s [%c] %s\n", prefix, dateString, event.filename, event.line, event.caller, strings.ToUpper(event.level.String())[0], event.msg)
wg.Add(2)
@@ -156,8 +152,6 @@ func TestConnLoggerFailConnect(t *testing.T) {
}

func TestConnLoggerClose(t *testing.T) {
var written []byte

protocol := "tcp"
address := ":3099"

@@ -217,8 +211,6 @@ func TestConnLoggerClose(t *testing.T) {
assert.Equal(t, level, connLogger.Level)
assert.Equal(t, level, logger.GetLevel())

written = written[:0]

event.level = WARN
expected = fmt.Sprintf("%s%s %s:%d:%s [%c] %s\n", prefix, dateString, event.filename, event.line, event.caller, strings.ToUpper(event.level.String())[0], event.msg)
wg.Add(2)

Loading…
Cancel
Save