aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_refinement.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_refinement.rb')
-rw-r--r--test/ruby/test_refinement.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb
index b69135f321..43f58b1038 100644
--- a/test/ruby/test_refinement.rb
+++ b/test/ruby/test_refinement.rb
@@ -1495,7 +1495,6 @@ class TestRefinement < Test::Unit::TestCase
end
def test_reopen_refinement_module
- flag = false
assert_separately([], <<-"end;")
$VERBOSE = nil
class C
@@ -1522,11 +1521,6 @@ class TestRefinement < Test::Unit::TestCase
assert_equal(:bar, C.new.m, "[ruby-core:71423] [Bug #11672]")
end;
- flag = true
- rescue MiniTest::Assertion
- skip 'expected to fail'
- ensure
- raise MiniTest::Assertion, 'this test is expected to fail' if flag
end
private