summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgit <svn-admin@ruby-lang.org>2019-11-29 03:11:28 +0900
committergit <svn-admin@ruby-lang.org>2019-11-29 03:11:28 +0900
commitd104ebf2c4fef4751e067ea7a2c7e664a843e088 (patch)
tree491f146f2760720c7efdfc01e35ea9d205d13877
parentdd723771c118da71aa58bb74537cacaec425542a (diff)
* remove trailing spaces. [ci skip]
-rw-r--r--test/ruby/test_variable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_variable.rb b/test/ruby/test_variable.rb
index 0772066143..6ed956c468 100644
--- a/test/ruby/test_variable.rb
+++ b/test/ruby/test_variable.rb
@@ -43,7 +43,7 @@ class TestVariable < Test::Unit::TestCase
c.class_variable_set(:@@foo, 1)
assert_equal([:@@foo], c.singleton_class.class_variables)
assert_equal(1, c.singleton_class.class_variable_get(:@@foo))
-
+
c = Class.new
c.extend(Olympians)
sc = Class.new(c)