@@ -34,7 +34,7 @@ def test_backtrace_prints_c_method_frame
3434 type 'c'
3535 type 'bt'
3636 assert_line_text ( /\[ C\] Integer#times/ )
37- type 'q !'
37+ type 'kill !'
3838 end
3939 end
4040
@@ -44,7 +44,7 @@ def test_backtrace_prints_the_return_value
4444 type 'c'
4545 type 'bt'
4646 assert_line_text ( /Foo#first_call .* #=> 30/ )
47- type 'q !'
47+ type 'kill !'
4848 end
4949 end
5050
@@ -54,7 +54,7 @@ def test_backtrace_prints_method_arguments
5454 type 'c'
5555 type 'bt'
5656 assert_line_text ( /Foo#second_call\( num=20\) / )
57- type 'q !'
57+ type 'kill !'
5858 end
5959 end
6060
@@ -64,7 +64,7 @@ def test_backtrace_prints_block_arguments
6464 type 'c'
6565 type 'bt'
6666 assert_line_text ( /block {\| ten=10\| }/ )
67- type 'q !'
67+ type 'kill !'
6868 end
6969 end
7070
@@ -76,7 +76,7 @@ def test_backtrace_prints_a_given_number_of_traces
7676 assert_line_text ( /Foo#third_call_with_block/ )
7777 assert_line_text ( /Foo#second_call/ )
7878 assert_no_line_text ( /Foo#first_call/ )
79- type 'q !'
79+ type 'kill !'
8080 end
8181 end
8282
@@ -88,7 +88,7 @@ def test_backtrace_filters_traces_with_location
8888 assert_line_text ( /Foo#second_call/ )
8989 assert_line_text ( /Foo#first_call/ )
9090 assert_no_line_text ( /Foo#third_call_with_block/ )
91- type 'q !'
91+ type 'kill !'
9292 end
9393 end
9494
@@ -100,7 +100,7 @@ def test_backtrace_filters_traces_with_method_name
100100 assert_line_text ( /Foo#second_call/ )
101101 assert_no_line_text ( /Foo#first_call/ )
102102 assert_no_line_text ( /Foo#third_call_with_block/ )
103- type 'q !'
103+ type 'kill !'
104104 end
105105 end
106106
@@ -111,7 +111,7 @@ def test_backtrace_takes_both_number_and_pattern
111111 type 'bt 1 /rb:\d\z/'
112112 assert_line_text ( /Foo#second_call/ )
113113 assert_no_line_text ( /Foo#first_call/ )
114- type 'q !'
114+ type 'kill !'
115115 end
116116 end
117117
@@ -166,7 +166,7 @@ def test_backtrace_prints_block_label_correctly
166166 type 'c'
167167 type 'bt'
168168 assert_line_text ( /block in <main> at/ )
169- type 'q !'
169+ type 'kill !'
170170 end
171171 end
172172
@@ -176,7 +176,7 @@ def test_backtrace_prints_nested_block_label_correctly
176176 type 'c'
177177 type 'bt'
178178 assert_line_text ( /block in <main> \( 2 levels\) at/ )
179- type 'q !'
179+ type 'kill !'
180180 end
181181 end
182182 end
0 commit comments