Remove a case where a pointer appeared in text tests (#1251)

This printed a table. This will make Lua print the address of the table and
hence the output of this test was non-deterministic.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2016-12-02 20:30:10 +01:00 committed by Daniel Hahler
parent 883b5934c0
commit cb61c1884f
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ o:method(1, 2, 3)
-- Random properties can also be added, the signal will be emitted automatically. -- Random properties can also be added, the signal will be emitted automatically.
o:connect_signal("property::something", function(obj, value) o:connect_signal("property::something", function(obj, value)
print("In the connection handler!", obj, value) assert(obj == o)
print("In the connection handler!", value)
end) end)
print(o.something) print(o.something)