Skip to content

Commit

Permalink
Indentation fix, pass lint check.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotNB committed Nov 19, 2018
1 parent 125ab54 commit 1340b7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -672,10 +672,10 @@ function suite(proxy) {
});

it('32. JSON.stringify does not fail on proxyied date.', () => {
var test = {d: new Date()};
var p = ObservableSlim.create(test, false, function () {});

JSON.stringify(p);
var test = {d: new Date()};
var p = ObservableSlim.create(test, false, function () {});
JSON.stringify(p);
});

it('33. valueOf does not fail on proxyied date.', () => {
Expand Down

0 comments on commit 1340b7b

Please sign in to comment.