Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhainin committed May 19, 2019
1 parent aa1dd4f commit 0d73a2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/014.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ $l->registerCallback('create_object', [T::class, 'create']);

$l->eval(<<<CODE
local t = create_object(2)
table.sort( t, function( a, b ) return a > b end )
for i,k in pairs(t) do
print(i, " -> ", k, "\\n")
print(i, " -> ", k, ",")
end
CODE
);

?>
--EXPECTF--
v -> 2
s -> string = 2
v -> 2,s -> string = 2,

0 comments on commit 0d73a2f

Please sign in to comment.