From: Kouhei S. <nu...@co...> - 2017-11-16 15:38:56
|
Kouhei Sutou 2017-11-17 00:38:25 +0900 (Fri, 17 Nov 2017) New Revision: e8fa968156a06b8b3134027f823614275ddf80e5 https://github.com/ruby-gnome2/ruby-gnome2/commit/e8fa968156a06b8b3134027f823614275ddf80e5 Message: gtk3 test: fix a typo Modified files: gtk3/test/test-gtk-style-properties.rb Modified: gtk3/test/test-gtk-style-properties.rb (+2 -2) =================================================================== --- gtk3/test/test-gtk-style-properties.rb 2017-11-17 00:37:38 +0900 (af7697282) +++ gtk3/test/test-gtk-style-properties.rb 2017-11-17 00:38:25 +0900 (43231513b) @@ -20,7 +20,7 @@ class TestGtkStyleProperties < Test::Unit::TestCase end class TestGet < self - def test_eixstent + def test_existent key = "border-radius" state = :normal value = 29 @@ -31,7 +31,7 @@ class TestGtkStyleProperties < Test::Unit::TestCase assert_equal(value, @properties.get_property(key, state)) end - def test_noneixstent + def test_nonexistent assert_nil(@properties.get_property("nonexistent", :normal)) end end |