Skip to content

Commit

Permalink
fix failing test (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebrianchen authored Jul 15, 2022
1 parent aab02f7 commit 688589a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alch/alchemy-web3",
"version": "1.4.4",
"version": "1.4.5",
"description": "Web3 client extended with Alchemy and browser provider integration.",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by injectVersion.js. Any changes will be
// overwritten on commit!
export const VERSION = "1.4.4";
export const VERSION = "1.4.5";
2 changes: 1 addition & 1 deletion test/alchemySubscriptions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ beforeEach(() => {

describe("AlchemyWeb3", () => {
it("suppresses the missing subscription warning for alchemy_ subscriptions", async () => {
web3.eth.subscribe("alchemy_fullPendingTransactions");
web3.eth.subscribe("alchemy_pendingTransactions");
expect(consoleWarnMock.mock.calls.length).toEqual(0);
});

Expand Down

0 comments on commit 688589a

Please sign in to comment.