Skip to content

Commit

Permalink
Fix type error in deno tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KallynGowdy committed Jan 24, 2023
1 parent 7671a5d commit 16c6036
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deno/StructureClone_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import { MessagePort } from './MessageChannel.ts';
const primitives = [[true], [false], [0], [1], ['string'], [undefined], [null]];

const arrayTypes = [
['Uint8Array'],
['Uint16Array'],
['Uint32Array'],
['Int8Array'],
['Int16Array'],
['Int32Array'],
['Uint8Array'] as const,
['Uint16Array'] as const,
['Uint32Array'] as const,
['Int8Array'] as const,
['Int16Array'] as const,
['Int32Array'] as const,
];

const errorCases = [
Expand Down

0 comments on commit 16c6036

Please sign in to comment.