From: cedlemo <nu...@co...> - 2017-07-21 12:58:16
|
cedlemo 2017-07-21 02:09:14 +0900 (Fri, 21 Jul 2017) New Revision: cd38019c7f045f2254293df144a7169eb61f9547 https://github.com/ruby-gnome2/ruby-gnome2/commit/cd38019c7f045f2254293df144a7169eb61f9547 Merged 7316c70: Merge pull request #1068 from cedlemo/poppler_gi_form Message: Change Poppler::AnnotationCalloutLine to Poppler::AnnotCalloutLine Modified files: poppler/test/test_annotation.rb Modified: poppler/test/test_annotation.rb (+3 -3) =================================================================== --- poppler/test/test_annotation.rb 2017-07-21 02:08:25 +0900 (f9de429) +++ poppler/test/test_annotation.rb 2017-07-21 02:09:14 +0900 (4fdc35e) @@ -58,9 +58,9 @@ class TestAnnotation < Test::Unit::TestCase def test_callout_line only_poppler_version(0, 7, 2) - callout_line = Poppler::AnnotationCalloutLine.new(true, - 1.1, 2.2, 3.3, - 4.4, 5.5, 6.6) + callout_line = Poppler::AnnotCalloutLine.new(true, + 1.1, 2.2, 3.3, + 4.4, 5.5, 6.6) assert(callout_line.multiline?) assert_equal(1.1, callout_line.x1) assert_equal(2.2, callout_line.y1) |