diff options
Diffstat (limited to 'test/irb/test_debug_cmd.rb')
-rw-r--r-- | test/irb/test_debug_cmd.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/irb/test_debug_cmd.rb b/test/irb/test_debug_cmd.rb index 3ba8742304..9aafbec7f0 100644 --- a/test/irb/test_debug_cmd.rb +++ b/test/irb/test_debug_cmd.rb @@ -119,11 +119,13 @@ module TestIRB output = run_ruby_file do type "step" + type "step" type "continue" end assert_match(/\(rdbg:irb\) step/, output) - assert_match(/=> 2| puts "Hello"/, output) + assert_match(/=> 5\| foo/, output) + assert_match(/=> 2\| puts "Hello"/, output) end def test_continue |