mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
remove some unneccessary type conversions
This commit is contained in:
parent
1e796fed4f
commit
fbe8844006
7 changed files with 14 additions and 14 deletions
|
@ -80,7 +80,7 @@ var _ = Describe("Log", func() {
|
|||
DefaultLogger.SetLogTimeFormat(format)
|
||||
DefaultLogger.SetLogLevel(LogLevelInfo)
|
||||
DefaultLogger.Infof("info")
|
||||
t, err := time.Parse(format, string(b.String()[:b.Len()-6]))
|
||||
t, err := time.Parse(format, b.String()[:b.Len()-6])
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(t).To(BeTemporally("~", time.Now(), 25*time.Hour))
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue