Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
powerful23 committed Jun 1, 2018
1 parent a4cc788 commit 35d2f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('kinesis provider test', () => {
test('happy case', () => {
const analytics = new KinesisProvider();

expect(analytics.configure({region: 'region1'})).toEqual({region: 'region1'});
expect(analytics.configure({region: 'region1'})).toEqual({"bufferSize": 1000, "flushInterval": 5000, "flushSize": 100, "region": "region1", "resendLimit": 5});
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default class AWSKinesisProvider implements AnalyticsProvider {

private _sendEvents(group) {
if (group.length === 0) {
//logger.debug('events array is empty, directly return');
// logger.debug('events array is empty, directly return');
return;
}

Expand Down

0 comments on commit 35d2f02

Please sign in to comment.