Skip to content

Commit

Permalink
Fix EOL to NL (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek authored Mar 14, 2020
1 parent 026603f commit 61ec8ba
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
28 changes: 14 additions & 14 deletions tests/config_test/config.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"num": 123,
"txt": "foo",
"bool": true,
"obj": {
"num": 456,
"txt": "bar",
"bool": true
},
"arr": [
{"one": "one", "another": "another"},
{"two": "two"}
]
}
{
"num": 123,
"txt": "foo",
"bool": true,
"obj": {
"num": 456,
"txt": "bar",
"bool": true
},
"arr": [
{"one": "one", "another": "another"},
{"two": "two"}
]
}
22 changes: 11 additions & 11 deletions tests/config_test/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
num: 123
txt: foo
bool: true
obj:
num: 456
txt: bar
bool: true
arr:
- one: one
another: another
- two: two
num: 123
txt: foo
bool: true
obj:
num: 456
txt: bar
bool: true
arr:
- one: one
another: another
- two: two

0 comments on commit 61ec8ba

Please sign in to comment.