Skip to content

Commit 6429d60

Browse files
committed
fix lint errors
1 parent 4e213e3 commit 6429d60

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/__tests__/encode-test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ describe('encode', () => {
186186
date: {
187187
__type: 'Date',
188188
iso: '2015-02-01T00:00:00.000Z'
189-
}
189+
}
190190
});
191191

192192
const subobj = new ParseObject('Subitem')
@@ -198,8 +198,8 @@ describe('encode', () => {
198198

199199
obj.attributes = {
200200
item : subobj
201-
};
202-
201+
};
202+
203203
expect(encode(obj)).toEqual({
204204
__type: 'Object',
205205
className: 'Item',
@@ -209,10 +209,10 @@ describe('encode', () => {
209209
str:'substring'
210210
}
211211
});
212-
212+
213213
obj.attributes = {
214214
items : [subobj, subobj]
215-
};
215+
};
216216
expect(encode(obj)).toEqual({
217217
__type: 'Object',
218218
className: 'Item',

0 commit comments

Comments
 (0)