From 9168f9359d95ffe643b49558b6d114573a107a47 Mon Sep 17 00:00:00 2001 From: myk002 Date: Tue, 24 Aug 2021 21:29:32 -0700 Subject: [PATCH] name test method the same as the method under test --- test/library/test_util/expect_unit.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/library/test_util/expect_unit.lua b/test/library/test_util/expect_unit.lua index fd9f9b1c0..1c3bd51e8 100644 --- a/test/library/test_util/expect_unit.lua +++ b/test/library/test_util/expect_unit.lua @@ -1,6 +1,6 @@ local expect_raw = require('test_util.expect') -function test.find() +function test.str_find() expect.true_(expect_raw.str_find('a ', 'a str', 'a comment')) local ok, comment, msg = expect_raw.str_find('ab', 'a str', 'a comment')