Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amitguptagwl committed Apr 14, 2017
1 parent bd9e046 commit 5b2c0a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fast-xml-parser",
"version": "2.4.0",
"version": "2.4.1",
"description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",
"main": "./bin/parser.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions spec/assets/sample.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
<selfclosing />
<selfclosing with="value" />
<married firstTime="No" attr="val 2">Yes</married>
<birthday>Wed, 28 Mar 1979 12:13:14 +0300
</birthday>
<birthday>Wed, 28 Mar 1979 12:13:14 +0300</birthday>
<address>
<city>New York</city>
<street>Park Ave</street>
Expand Down
2 changes: 1 addition & 1 deletion spec/xmlParser_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ describe("XMLParser", function () {
"@attr": "val 2",
"#_text": "Yes"
},
"birthday": "Wed, 28 Mar 1979 12:13:14 +0300\r\n ",
"birthday": "Wed, 28 Mar 1979 12:13:14 +0300",
"address": [{
"city": "New York",
"street": "Park Ave",
Expand Down

0 comments on commit 5b2c0a3

Please sign in to comment.