Skip to content

Commit

Permalink
chore: add spaces between it blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
b00ste committed Jul 23, 2023
1 parent 15c0f7d commit f7c9e5e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/encoder.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,13 @@ describe('encoder', () => {
it('throws when trying to encode a string as `uint128`', () => {
assert.throws(() => encodeValueType('uint128', 'helloWorld'));
});

it('throws when trying to encode a bytes17 as `uint128`', () => {
assert.throws(() =>
encodeValueType('uint128', '340282366920938463463374607431768211456'),
);
});

it('throws when trying to decode a bytes17 as `uint128`', () => {
assert.throws(() =>
decodeValueType('uint128', '0x000000000000000000000000000000ffff'),
Expand Down

0 comments on commit f7c9e5e

Please sign in to comment.