Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
radiovisual committed Jun 3, 2018
1 parent cd694b6 commit 64c5929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ test('listMembersToFeedEntries should convert a twitter list to screen_names', a
const birdwatch = new Birdwatch({server: false});
const feeds = await birdwatch.listMembersToFeedEntries('{"users":[{"screen_name": "foo"},{"screen_name": "bar"}]}');
const expected = [
{screenname: 'foo', options: {limit: 20}},
{screenname: 'bar', options: {limit: 20}}
{screenname: 'foo', options: {limit: 20, removeRetweets: true}},
{screenname: 'bar', options: {limit: 20, removeRetweets: true}}
];
t.deepEqual(feeds, expected);
});
Expand Down

0 comments on commit 64c5929

Please sign in to comment.