-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add consistent indentation in null_lookup_object.js test file
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
1 parent
fc4db27
commit 5e19b30
Showing
1 changed file
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
}) |