tstest: make LogLineTracker pass variadic format args through

Omitting the "..." passed a literal []interface{} to the underlying
logger always.
reviewable/pr737/r1
Brad Fitzpatrick 4 years ago
parent 68c42530e9
commit 7fddc33481

@ -75,7 +75,7 @@ func (lt *LogLineTracker) Logf(format string, args ...interface{}) {
lt.seen[format] = true
}
lt.mu.Unlock()
lt.logf(format, args)
lt.logf(format, args...)
}
// Check returns which format strings haven't been logged yet.

Loading…
Cancel
Save