Fix make test

This commit is contained in:
Robin Malley 2021-01-16 21:01:31 +00:00
parent 861e53cc29
commit 2c732db22d
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ describe("smr imageboard parser",function()
local parser = require("parser_imageboard")
local input = "Hello, world!"
local output = parser(input)
assert(type(output) == "str
assert(type(output) == "string","Expected string, got: %s",type(output))
end)
end)