Skip to content

Commit dde0174

Browse files
committed
fix tests
1 parent cddff76 commit dde0174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-base/inspect_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_inspect_error_1
4444
send_ruby("v inspect a*2")
4545
variables = read_variables
4646
assert_equal(1, variables.length, "There is one exception returned.")
47-
assert_equal("undefined local variable or method `a' for main:Object", variables[0].value, "Result is NameError")
47+
assert_equal('undefined local variable or method `a\' for main:Object', variables[0].value, "Result is NameError")
4848
send_cont
4949
end
5050

@@ -54,7 +54,7 @@ def test_inspect_error_2
5454
send_ruby('v inspect 1 {1 => "one", 2 => "two" {')
5555
variables = read_variables
5656
assert_equal(1, variables.length, "There is one exception returned.")
57-
assert_equal("undefined local variable or method `a' for main:Object", variables[0].value, "Result is NameError")
57+
assert_equal('undefined local variable or method `a\' for main:Object', variables[0].value, "Result is NameError")
5858
send_cont
5959
end
6060

0 commit comments

Comments
 (0)