From 64c5929b01da9de5f9c60c5a822a050040547373 Mon Sep 17 00:00:00 2001 From: Michael Wuergler Date: Sun, 3 Jun 2018 23:13:19 +0200 Subject: [PATCH] fix test --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 6a95479..62b1703 100644 --- a/test/test.js +++ b/test/test.js @@ -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); });