Skip to content

Commit

Permalink
#245 update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Nov 12, 2022
1 parent 3ec7145 commit 3ca3f33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/comptests/inputs/lua-Harness-232-object.t
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ end
do --[[ multiple inheritance ]]
-- look up for 'k' in list of tables 'plist'
local function search (k, plist)
for i=1, (@integer #plist) do
for i=1, #plist do
local v = plist[i][k] -- try 'i'-th superclass
if v then return v end
end
Expand Down Expand Up @@ -208,7 +208,7 @@ end
do --[[ multiple inheritance (patched) ]]
-- look up for 'k' in list of tables 'plist'
local function search (k, plist)
for i=1, (@integer #plist) do
for i=1, #plist do
local v = plist[i][k] -- try 'i'-th superclass
if v then return v end
end
Expand Down

0 comments on commit 3ca3f33

Please sign in to comment.