Skip to content

Commit

Permalink
Fix error prone test
Browse files Browse the repository at this point in the history
  • Loading branch information
boristane committed Dec 15, 2018
1 parent 1aa89f6 commit e382413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/central.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Averages and measures of central location', () => {
expect(mean([])).toBeUndefined();
expect(mean(3)).toBeUndefined();
expect(mean([3])).toBe(3);
expect(mean([3, 2.5, 2e2, 5.75])).toBe(52.8125);
expect(mean([3, 2.5, 200, 5.75])).toBe(52.8125);
testUndefinedWithNullable(mean);
});

Expand Down

0 comments on commit e382413

Please sign in to comment.