Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Nov 26, 2023
1 parent ac3c6e6 commit 9a7aa3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/nestjs/src/app.controller.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Controller, Get } from '@nestjs/common'

import type { AppService } from './app.service'
import { AppService } from './app.service'

@Controller()
export class AppController {
Expand Down
2 changes: 1 addition & 1 deletion apps/nestjs/src/dogs/dogs.controller.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Controller, Get } from '@nestjs/common'
import type { Dog } from '@repo/types'

import type { DogsService } from './dogs.service'
import { DogsService } from './dogs.service'

@Controller('dogs')
export class DogsController {
Expand Down

0 comments on commit 9a7aa3f

Please sign in to comment.