Skip to content

Commit

Permalink
test: update DAPIClient test
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Sep 18, 2024
1 parent 5130a9c commit 1817c78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/js-dapi-client/test/unit/DAPIClient.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('DAPIClient', () => {
dapiClient = new DAPIClient(options);

expect(dapiClient.options).to.deep.equal({
network: 'testnet',
network: 'mainnet',
retries: 0,
newOption: true,
timeout: 10000,
Expand Down Expand Up @@ -48,7 +48,7 @@ describe('DAPIClient', () => {
expect(dapiClient.options).to.deep.equal({
retries: 5,
timeout: 10000,
network: 'testnet',
network: 'mainnet',
blockHeadersProviderOptions: BlockHeadersProvider.defaultOptions,
loggerOptions: {
identifier: '',
Expand Down Expand Up @@ -79,7 +79,7 @@ describe('DAPIClient', () => {
expect(dapiClient.options).to.deep.equal({
retries: 0,
dapiAddresses: ['localhost'],
network: 'testnet',
network: 'mainnet',
timeout: 10000,
blockHeadersProviderOptions: BlockHeadersProvider.defaultOptions,
loggerOptions: {
Expand Down

0 comments on commit 1817c78

Please sign in to comment.