Updated unit test.

This commit is contained in:
Matthias Koefferlein 2020-01-04 12:38:06 +01:00
parent 09f97aa286
commit aa268d3768
1 changed files with 5 additions and 1 deletions

View File

@ -398,7 +398,11 @@ class LAYLayoutView_TestClass < TestBase
assert_equal(lv.begin_layers.current.fill_color, 0xffff31cc)
# should not segfault
lv.insert_layer(42, lv.begin_layers(42))
begin
lv.insert_layer(42, lv.begin_layers(42))
assert_equal(true, false)
rescue => ex
end
end