quick list

This commit is contained in:
finley
2022-07-12 20:57:13 +08:00
parent ab0754e2a5
commit e6d958716d
12 changed files with 743 additions and 34 deletions

View File

@@ -150,7 +150,7 @@ func AssertMultiBulkReplySize(t *testing.T, actual redis.Reply, expected int) {
func printStack() string {
_, file, no, ok := runtime.Caller(2)
if ok {
return fmt.Sprintf("at %s#%d", file, no)
return fmt.Sprintf("at %s:%d", file, no)
}
return ""
}