Skip to content

Commit

Permalink
test(bytes): cleanup empty test (#2586)
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua authored Sep 2, 2022
1 parent eab5437 commit 36a4069
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bytes/bytes_list_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Deno.test("[bytes] BytesList.concat", () => {
});
Deno.test("[bytes] BytesList.shift", () => {
const arr = setup();
arr.shift(0);
arr.shift(3);
assertEquals(arr.size(), 7);
assertEquals(
Expand Down Expand Up @@ -208,6 +209,3 @@ Deno.test("[bytes] BytesList.iterator()", () => {
assertEquals(Array.from(arr.iterator(-1)), []);
assertEquals(Array.from(arr.iterator(100)), []);
});

Deno.test("[bytes] ByteList.iterator() range", () => {
});

0 comments on commit 36a4069

Please sign in to comment.