Refactor import paths for PaymentsService to improve module organization

This commit is contained in:
Jose Eduardo 2025-08-09 22:36:31 -04:00
parent fefa4e2995
commit 04b874a3a2
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { Test, TestingModule } from '@nestjs/testing';
import { PaymentsController } from '../payments.controller';
import { PaymentsService } from '../payments.service';
import { PaymentsService } from '../services/payments.service';
describe('PaymentsController', () => {
let controller: PaymentsController;

View File

@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { PaymentsService } from '../payments.service';
import { PaymentsService } from '../services/payments.service';
describe('PaymentsService', () => {
let service: PaymentsService;