File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -236,11 +236,11 @@ def should_print_full_java_command(options, env: {})
236
236
it "'--vm.cp=' or '--vm.classpath=' add the jar" do
237
237
out = ruby_exe ( "puts Truffle::System.get_java_property('java.class.path')" , options : "--vm.cp=does-not-exist.jar" , args : @redirect )
238
238
check_status_and_empty_stderr
239
- out . lines [ 0 ] . should include ( ": does-not-exist.jar" )
239
+ out . lines [ 0 ] . should include ( "does-not-exist.jar" )
240
240
241
241
out = ruby_exe ( "puts Truffle::System.get_java_property('java.class.path')" , options : "--vm.classpath=does-not-exist.jar" , args : @redirect )
242
242
check_status_and_empty_stderr
243
- out . lines [ 0 ] . should include ( ": does-not-exist.jar" )
243
+ out . lines [ 0 ] . should include ( "does-not-exist.jar" )
244
244
end
245
245
end
246
246
You can’t perform that action at this time.
0 commit comments