Skip to content

Commit 66bb4ac

Browse files
committed
[[ Bug 11323 ]] Tweak defintions of operations in test.
1 parent 8c723c1 commit 66bb4ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/lcs/core/array/setoperations.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function ArraySymmetricDifference(pLeft, pRight)
154154
if tKey is not among the keys of pLeft then
155155
put pRight[tKey] into pLeft[tKey]
156156
else
157-
delete pLeft[tKey]
157+
delete variable pLeft[tKey]
158158
end if
159159
end repeat
160160
@@ -384,7 +384,7 @@ Semantics of array difference:
384384
function ArrayDifference(pLeft, pRight)
385385
repeat for each key tKey in pLeft
386386
if tKey is among the keys of pRight then
387-
delete pLeft[tKey]
387+
delete variable pLeft[tKey]
388388
end if
389389
end repeat
390390

0 commit comments

Comments
 (0)