Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
st0012 authored and ko1 committed Dec 5, 2023
1 parent 019d4bb commit 5581994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/debug/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ def register_default_command
# * Invoke `irb` on the current frame.
register_command 'irb' do |arg|
if @ui.remote?
@ui.puts "\nIRB is supported on the remote console."
@ui.puts "\nIRB is not supported on the remote console."
:retry
else
request_eval :irb, nil
Expand Down
2 changes: 1 addition & 1 deletion test/console/irb_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def program
def test_irb_command_is_disabled_in_remote_mode
debug_code(program, remote: :remote_only) do
type 'irb'
assert_line_text 'IRB is supported on the remote console.'
assert_line_text 'IRB is not supported on the remote console.'
type 'q!'
end
end
Expand Down

0 comments on commit 5581994

Please sign in to comment.