chore: bump prettier from 2.2.1 to 2.3.0 in /web3.js (#17143)

* chore: bump prettier from 2.2.1 to 2.3.0 in /web3.js

Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.0)

Signed-off-by: dependabot[bot] <support@github.com>

* chore: bump

* chore: format

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Justin Starry <justin@solana.com>
This commit is contained in:
dependabot[bot]
2021-05-25 03:53:16 +00:00
committed by GitHub
parent fd43446bfa
commit fda8cb176a
10 changed files with 64 additions and 279 deletions

View File

@ -63,11 +63,12 @@ describe('shortvec', () => {
checkEncodedArray(array, 0x7fff, (prevLength += 3), 3, [0xff, 0xff, 0x01]);
checkEncodedArray(array, 0x200000, (prevLength += 4), 4, [
0x80,
0x80,
0x80,
0x01,
]);
checkEncodedArray(
array,
0x200000,
(prevLength += 4),
4,
[0x80, 0x80, 0x80, 0x01],
);
});
});