Also add quotes in expect.ne()

Extension of #1886
develop
lethosor 2021-06-24 01:15:15 -04:00
parent 72998cddd5
commit 1b167e7898
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
1 changed files with 1 additions and 1 deletions

@ -28,7 +28,7 @@ function expect.eq(a, b, comment)
end
function expect.ne(a, b, comment)
return a ~= b, comment, ('%s == %s'):format(a, b)
return a ~= b, comment, ('"%s" == "%s"'):format(a, b)
end
function expect.lt(a, b, comment)