Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit b4e43ee

Browse files
committed
GetTxpoolContentMethodTest fix
1 parent fc0297e commit b4e43ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/web3-core-method/tests/src/methods/txpool/GetTxpoolContentMethodTest.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
import {formatters} from 'web3-core-helpers';
22
import AbstractMethod from '../../../../lib/methods/AbstractMethod';
3-
import GetTxpoolStatusMethod from '../../../../src/methods/txpool/GetTxpoolStatusMethod';
3+
import GetTxpoolContentMethod from '../../../../src/methods/txpool/GetTxpoolContentMethod';
44

55
// Mocks
66
jest.mock('web3-core-helpers');
77

88
/**
99
* GetTxpoolContentMethod test
1010
*/
11-
describe('GetTxpoolStatusMethodTest', () => {
11+
describe('GetTxpoolContentMethodTest', () => {
1212
let method;
1313

1414
beforeEach(() => {
15-
method = new GetTxpoolStatusMethod(null, formatters, {});
15+
method = new GetTxpoolContentMethod(null, formatters, {});
1616
});
1717

1818
it('constructor check', () => {

0 commit comments

Comments
 (0)