Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed May 24, 2024
1 parent 3de1338 commit 6ebda42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web3/test/unit/web3.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('Web3 object', () => {
it('should be able to set and read web3 providers', () => {
const web3NoProvider = new Web3("");
expect(web3NoProvider).toBeTruthy();
expect(web3NoProvider.provider).toEqual("");
expect(web3NoProvider.provider).toBe("");

const web3 = new Web3('http://somenode');
expect(web3).toBeTruthy();
Expand Down

0 comments on commit 6ebda42

Please sign in to comment.