Skip to content

Commit

Permalink
chore: Get rid of lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Oct 11, 2016
1 parent f0071d9 commit 733904c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/matreshka_array/static_methods_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Matreshka.Array static methods (of and from)', () => {

it('allows to inherit Matreshka.Array.from', () => {
const items = [1, 2, 3];
const OwnerClass = Class({'extends': MatreshkaArray});
const OwnerClass = Class({ extends: MatreshkaArray });
const arr = OwnerClass.from(items);

expect(arr instanceof OwnerClass).toBe(true);
Expand Down Expand Up @@ -47,7 +47,7 @@ describe('Matreshka.Array static methods (of and from)', () => {

it('allows to inherit Matreshka.Array.of', () => {
const items = [1, 2, 3];
const OwnerClass = Class({'extends': MatreshkaArray});
const OwnerClass = Class({ extends: MatreshkaArray });
const arr = OwnerClass.of(...items);

expect(arr instanceof OwnerClass).toBe(true);
Expand Down

0 comments on commit 733904c

Please sign in to comment.