summaryrefslogtreecommitdiffhomepage
path: root/test/t/module.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2014-04-30 09:50:14 +0900
committerNobuyoshi Nakada <[email protected]>2014-04-30 09:50:14 +0900
commitab67c57f652c7c3a64ec4f4dc73259a14fb1b545 (patch)
treed9535d70ba74920783864fa6372ec471aca5af91 /test/t/module.rb
parent345f172bba2dc5a6df607dded5c4b95b0e68f9bf (diff)
downloadmruby-ab67c57f652c7c3a64ec4f4dc73259a14fb1b545.tar.gz
mruby-ab67c57f652c7c3a64ec4f4dc73259a14fb1b545.zip
remove trailing spaces
Diffstat (limited to 'test/t/module.rb')
-rw-r--r--test/t/module.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/t/module.rb b/test/t/module.rb
index 48a09f720..585774a4b 100644
--- a/test/t/module.rb
+++ b/test/t/module.rb
@@ -485,19 +485,19 @@ end
assert('Issue 1467') do
module M1
def initialize()
- super()
+ super()
end
end
- class C1
- include M1
- def initialize()
- super()
+ class C1
+ include M1
+ def initialize()
+ super()
end
end
class C2
- include M1
+ include M1
end
C1.new