Codacy issue fixes

This commit is contained in:
Angelos Chalaris
2018-06-18 21:18:53 +03:00
parent ba3fcbb95a
commit 17fb304f04
32 changed files with 45 additions and 45 deletions

View File

@ -5,8 +5,8 @@ test('median is a Function', () => {
expect(median).toBeInstanceOf(Function);
});
test('Returns the median of an array of numbers', () => {
expect(median([5, 6, 50, 1, -5])).toBe(5)
expect(median([5, 6, 50, 1, -5])).toBe(5);
});
test('Returns the median of an array of numbers', () => {
expect(median([1, 2, 3])).toBe(2)
expect(median([1, 2, 3])).toBe(2);
});