Skip to content

Commit

Permalink
Add consistent indentation in null_lookup_object.js test file
Browse files Browse the repository at this point in the history
Either vim or git was going crazy with the indentation when I tried
improving the test via changing one of the lines, so I linted it all
together.
  • Loading branch information
dasilvacontin committed Mar 15, 2016
1 parent fc4db27 commit 5e19b30
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions test/_files/null_lookup_object.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
({
"name": "David",
"twitter": "@dasilvacontin",
"fobject": [
{
"name": "Flor",
"twitter": "@florrts"
},
{
"name": "Miquel",
"twitter": null
},
{
"name": "Chris",
"twitter": undefined
}
],
"favorites": {
"color": "blue",
"president": "Bush",
"show": "Futurama"
"name": "David",
"twitter": "@dasilvacontin",
"fobject": [
{
"name": "Flor",
"twitter": "@florrts"
},
{
"name": "Miquel",
"twitter": null
},
"mascot": {
"name": "Squid",
"favorites": {
"color": "orange",
"president": undefined,
"show": null
}
{
"name": "Chris",
"twitter": undefined
}
],
"favorites": {
"color": "blue",
"president": "Bush",
"show": "Futurama"
},
"mascot": {
"name": "Squid",
"favorites": {
"color": "orange",
"president": undefined,
"show": null
}
}
})

0 comments on commit 5e19b30

Please sign in to comment.