Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thangngoc89 committed Mar 4, 2016
1 parent b1a6620 commit 9c81ef3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/enhance-collection/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ test("limit", (t) => {

test("addSiblingReferences", (t) => {
const collec = [
{k: 1},
{k: 2},
{k: 3},
{ k: 1 },
{ k: 2 },
{ k: 3 },
]

t.same(
Expand All @@ -107,16 +107,16 @@ test("addSiblingReferences", (t) => {
[
{
k: 1,
next: {k: 2},
next: { k: 2 },
},
{
k: 2,
previous: {k: 1},
next: {k: 3},
previous: { k: 1 },
next: { k: 3 },
},
{
k: 3,
previous: {k: 2},
previous: { k: 2 },
},
]
)
Expand Down

0 comments on commit 9c81ef3

Please sign in to comment.