1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

test: fix teamcity runner message escapes (#17405)

This commit is contained in:
Petr Makhnev 2023-02-25 16:39:09 +04:00 committed by GitHub
parent a7ae3bfa78
commit 51bb8cda15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,7 @@ fn (mut runner TeamcityTestRunner) fn_fail() {
|type='comparisonFailure' |type='comparisonFailure'
|actual='${actual}' |actual='${actual}'
|expected='${expected}' |expected='${expected}'
|message='${message}' |message='${runner.prepare_value(message)}'
|]".strip_margin()) |]".strip_margin())
println('\n') println('\n')
} }