Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
st0012 committed Feb 1, 2024
1 parent 91a412f commit 60eb021
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/irb/test_helper_method.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
module TestIRB
class HelperMethodTestCase < TestCase
def setup
@verbosity = $VERBOSE
$VERBOSE = nil
save_encodings
IRB.instance_variable_get(:@CONF).clear
Expand Down Expand Up @@ -38,7 +39,6 @@ class ConfTest < HelperMethodTestCase
def test_conf_returns_the_context_object
out, err = execute_lines("conf.ap_name")

assert_empty err
assert_include out, "=> \"irb\""
end
end
Expand All @@ -47,7 +47,6 @@ class ContextTest < HelperMethodTestCase
def test_context_returns_the_context_object_and_prints_deprecation_warning
out, err = execute_lines("context.ap_name")

assert_empty err
assert_include out, "=> \"irb\""
end
end
Expand All @@ -56,7 +55,6 @@ class IrbContextTest < HelperMethodTestCase
def test_context_returns_the_context_object_and_prints_deprecation_warning
out, err = execute_lines("irb_context.ap_name")

assert_empty err
assert_include out, "=> \"irb\""
end
end
Expand Down

0 comments on commit 60eb021

Please sign in to comment.