Skip to content

Commit

Permalink
change prefix of static method test
Browse files Browse the repository at this point in the history
  • Loading branch information
marchsu committed Aug 13, 2024
1 parent 0ea73ec commit 10ba61c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4547,7 +4547,7 @@ export const StakeApiFactory = function (configuration?: Configuration, basePath
/**
* Fetch historical staking balances for given address
* @summary Fetch historical staking balances
* @param {string} address The onchain addresses for which the staking balances are being fetched
* @param {string} address The onchain address for which the staking balances are being fetched
* @param {string} networkId The ID of the blockchain network
* @param {string} assetId The ID of the asset
* @param {string} startTime The start time of the staking balances period
Expand Down
2 changes: 1 addition & 1 deletion src/tests/staking_historical_balance_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("StakingBalance", () => {
jest.clearAllMocks();
});

describe(".list", () => {
describe("#list", () => {
it("should successfully return staking balances", async () => {
Coinbase.apiClients.stake!.fetchHistoricalStakingBalances = mockReturnValue(HISTORICAL_STAKING_BALANCES_RESPONSE);
Coinbase.apiClients.asset!.getAsset = getAssetMock();
Expand Down

0 comments on commit 10ba61c

Please sign in to comment.