Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Cooper committed Jul 1, 2016
1 parent 15e78bd commit e1e2223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (p *Person) AddNumbers(L *LState) int {
for i := L.GetTop(); i >= 1; i-- {
sum += L.CheckInt(i)
}
L.Push(lua.LString("Tim counts: " + strconv.Itoa(sum)))
L.Push(lua.LString(p.Name + " counts: " + strconv.Itoa(sum)))
return 1
}

Expand Down

0 comments on commit e1e2223

Please sign in to comment.