Skip to content

Commit

Permalink
Remove duplicated test assertion (sindresorhus#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakecastelli authored Nov 4, 2021
1 parent 853dc19 commit 000ccd1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ test('converts bytes to human readable strings', t => {
t.is(prettyBytes(10.1), '10.1 B');
t.is(prettyBytes(999), '999 B');
t.is(prettyBytes(1001), '1 kB');
t.is(prettyBytes(1001), '1 kB');
t.is(prettyBytes(1e16), '10 PB');
t.is(prettyBytes(1e30), '1000000 YB');
});
Expand Down

0 comments on commit 000ccd1

Please sign in to comment.