Skip to content

Commit 317102a

Browse files
committed
fix linting in files
1 parent 945296c commit 317102a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/shelter-managers/shelter-managers.controller.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ describe('ShelterManagersController', () => {
99
controllers: [ShelterManagersController],
1010
}).compile();
1111

12-
controller = module.get<ShelterManagersController>(ShelterManagersController);
12+
controller = module.get<ShelterManagersController>(
13+
ShelterManagersController,
14+
);
1315
});
1416

1517
it('should be defined', () => {

src/shelter/shelter.service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
import { SeachQueryProps } from '@/decorators/search-query/types';
1313
import { SupplyPriority } from 'src/supply/types';
1414

15-
1615
@Injectable()
1716
export class ShelterService {
1817
constructor(private readonly prismaService: PrismaService) {}
@@ -74,8 +73,7 @@ export class ShelterService {
7473
verified: true,
7574
shelterSupplies: {
7675
where: {
77-
priority: {
78-
},
76+
priority: {},
7977
},
8078
select: {
8179
priority: true,

src/supply-categories/supply-categories.controller.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ describe('SupplyCategoriesController', () => {
99
controllers: [SupplyCategoriesController],
1010
}).compile();
1111

12-
controller = module.get<SupplyCategoriesController>(SupplyCategoriesController);
12+
controller = module.get<SupplyCategoriesController>(
13+
SupplyCategoriesController,
14+
);
1315
});
1416

1517
it('should be defined', () => {

0 commit comments

Comments
 (0)