diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lua/unit/regxep.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lua/unit/regxep.lua b/test/lua/unit/regxep.lua index f063efeda..5329fece2 100644 --- a/test/lua/unit/regxep.lua +++ b/test/lua/unit/regxep.lua @@ -24,7 +24,8 @@ context("Regexp unit tests", function() local m = false if res then m = true end - assert_equal(m, c[3]) + assert_equal(m, c[3], string.format("'%s' doesn't match with '%s'", + c[2], c[1])) end end) end |