summaryrefslogtreecommitdiff
path: root/test/-ext-
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-')
-rw-r--r--test/-ext-/debug/test_debug.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/-ext-/debug/test_debug.rb b/test/-ext-/debug/test_debug.rb
index da66b1baf8..bc41c1bb79 100644
--- a/test/-ext-/debug/test_debug.rb
+++ b/test/-ext-/debug/test_debug.rb
@@ -57,19 +57,19 @@ class TestDebug < Test::Unit::TestCase
binds_check binds, bug7635
end
- class MyRelation
- include Enumerable
-
+ class MyRelation
+ include Enumerable
+
def each
yield :each_entry
- end
- end
-
+ end
+ end
+
def test_lazy_block
x = MyRelation.new.any? do
Bug::Debug.inspector
true
- end
+ end
assert_equal true, x, '[Bug #15105]'
end
end