Skip to content

Commit

Permalink
Merge pull request #242 from cherzog/master
Browse files Browse the repository at this point in the history
Avoid line feed problems (Win/Linux)
  • Loading branch information
raymondfeng committed Sep 17, 2019
2 parents 8b2b381 + 084542f commit a51322e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/wsdl-parse-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ describe(__filename, function() {
var complexType = schema.complexTypes['ContactMedium'];
var doc = complexType.children[0].children[0];
assert.equal(doc.name, 'documentation');
assert.equal(doc.$value, 'Defines the method of contact to reach a ' +
'party (in\n their specified role)');
assert.equal(doc.$value.replace('\r', ''), 'Defines the method of ' +
'contact to reach a party (in\n their specified role)');
// If we get here then we succeeded
done(err);
});
Expand Down

0 comments on commit a51322e

Please sign in to comment.