summaryrefslogtreecommitdiff
path: root/lldb/test/API/lua_api/TestProcessAPI.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/lua_api/TestProcessAPI.lua')
-rw-r--r--lldb/test/API/lua_api/TestProcessAPI.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/API/lua_api/TestProcessAPI.lua b/lldb/test/API/lua_api/TestProcessAPI.lua
index aa788ba74115..ff84cd9c7947 100644
--- a/lldb/test/API/lua_api/TestProcessAPI.lua
+++ b/lldb/test/API/lua_api/TestProcessAPI.lua
@@ -13,7 +13,7 @@ function _T:TestProcessLaunchSimple()
)
assertTrue(process:IsValid())
local stdout = process:GetSTDOUT(1000)
- assertEquals(split_lines(stdout), {self.exe, table.unpack(args)})
+ assertEqual(split_lines(stdout), {self.exe, table.unpack(args)})
end
function _T:TestProcessLaunch()
@@ -52,7 +52,7 @@ function _T:TestProcessLaunch()
local continue = process:Continue()
assertTrue(continue:Success())
local f = io.open(self.output, 'r')
- assertEquals(read_file_non_empty_lines(f), {self.exe, table.unpack(args)})
+ assertEqual(read_file_non_empty_lines(f), {self.exe, table.unpack(args)})
f:close()
end