Skip to content

Commit 00e0588

Browse files
committed
Add the newline for tLog too
1 parent 93a4364 commit 00e0588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func tRun(L *lua.LState) int {
5656
func tLog(L *lua.LState) int {
5757
t := checkT(L, 1)
5858
where := L.Where(1)
59-
args := []interface{}{where}
59+
args := []interface{}{"\n", where}
6060
top := L.GetTop()
6161
for i := 2; i <= top; i++ {
6262
args = append(args, L.Get(i))

0 commit comments

Comments
 (0)