We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff05c1 commit 6f20a29Copy full SHA for 6f20a29
2 files changed
testing/wicket-js-tests/Gruntfile.js
@@ -121,7 +121,7 @@ module.exports = function(grunt) {
121
"xml-replacement": {
122
options: {
123
urls: [
124
- 'http://localhost:38887/test/js/xml-replacement.html?3.7.1'
+ 'http://localhost:38887/test/js/xml-replacement.html?4.0.0'
125
]
126
}
127
wicket-core/src/test/js/xml-replacement.js
@@ -110,7 +110,11 @@ jQuery(document).ready(function() {
110
function () {
111
done();
112
var complexXml = jQuery('#complexXml');
113
- assert.equal(complexXml.html().trim(), '<mrow>\n' +
+ assert.equal(complexXml.html()
114
+ .trim()
115
+ .replaceAll('\r\n', '\n')
116
+ .replaceAll('\r', '\n'),
117
+ '<mrow>\n' +
118
'<mn>2</mn>\n' +
119
'<mo></mo>\n' +
120
'<mn>3</mn>\n' +
0 commit comments