Skip to content

Commit

Permalink
Rename TestNetworkModule.ts to test.network.module.ts (#43)
Browse files Browse the repository at this point in the history
The file was created without following the standard file naming that we have in the project
  • Loading branch information
fmrsabino authored Aug 19, 2022
1 parent 8ed7293 commit d5daa1b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/balances/balances.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import configuration from '../config/configuration';
import {
mockNetworkService,
TestNetworkModule,
} from '../common/network/__tests__/TestNetworkModule';
} from '../common/network/__tests__/test.network.module';
import { BalancesModule } from './balances.module';

describe('Balances Controller (Unit)', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/chains/chains.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import backboneFactory from './entities/__tests__/backbone.factory';
import {
mockNetworkService,
TestNetworkModule,
} from '../common/network/__tests__/TestNetworkModule';
} from '../common/network/__tests__/test.network.module';

describe('Chains Controller (Unit)', () => {
let app: INestApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Balance } from './entities/balance.entity';
import { HttpErrorHandler } from '../errors/http-error-handler';
import { TransactionService } from './transaction-service.service';
import { Backbone } from '../../chains/entities';
import { mockNetworkService } from '../../common/network/__tests__/TestNetworkModule';
import { mockNetworkService } from '../../common/network/__tests__/test.network.module';

const BALANCES: Balance[] = [
{
Expand Down

0 comments on commit d5daa1b

Please sign in to comment.