summaryrefslogtreecommitdiffstats
path: root/src/tools/rustdoc-js/tester.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustdoc-js/tester.js')
-rw-r--r--src/tools/rustdoc-js/tester.js14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/tools/rustdoc-js/tester.js b/src/tools/rustdoc-js/tester.js
index 3da4fed33..ea5780f66 100644
--- a/src/tools/rustdoc-js/tester.js
+++ b/src/tools/rustdoc-js/tester.js
@@ -138,8 +138,20 @@ function valueCheck(fullPath, expected, result, error_text, queryName) {
error_text.push('==> Unknown key "' + key + '"');
break;
}
+ let result_v = result[key];
+ if (result_v !== null && key === "error") {
+ result_v.forEach((value, index) => {
+ value = value.split(" ").join(" ");
+ if (index % 2 === 1) {
+ result_v[index] = "`" + value + "`";
+ } else {
+ result_v[index] = value;
+ }
+ });
+ result_v = result_v.join("");
+ }
const obj_path = fullPath + (fullPath.length > 0 ? '.' : '') + key;
- valueCheck(obj_path, expected[key], result[key], error_text, queryName);
+ valueCheck(obj_path, expected[key], result_v, error_text, queryName);
}
} else {
expectedValue = JSON.stringify(expected);