From 069649389cf2019782c7a11becf6391a67c68a9a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 6 Jan 2021 17:34:18 +0900 Subject: [PATCH] strip trailing spaces [ci skip] --- test/ostruct/test_ostruct.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 443a20c86a..30ea3d571c 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -256,7 +256,7 @@ class TC_OpenStruct < Test::Unit::TestCase os = c.new(foo: :bar) assert_equal(:bar, os.foo) end - + def test_overridden_public_methods os = OpenStruct.new(method: :foo, class: :bar) assert_equal(:foo, os.method)