Skip to content

Commit

Permalink
[Fix] Replace incorrectly declared variable name with correct variabl…
Browse files Browse the repository at this point in the history
…e name (#445)
  • Loading branch information
ChoHadam authored Jan 9, 2023
1 parent 83e5261 commit a46ef2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integral/auth.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import app from '@src/app';
import { TokenSetDTO } from '@dto/index';
import { BASE_PATH, ABNORMAL_CONNECTION } from '@utils/strings';

import { ResponseDTO, SimpleResponseDTO, Opcode } from '@response/common';
import { ResponseDTO, SimpleResponseDTO, OpCode } from '@response/common';
import { LoginResponse } from '@response/user';

const basePath: string = BASE_PATH;
Expand Down Expand Up @@ -122,7 +122,7 @@ describe('# Auth Controller Test', () => {
responseDTO.message
).to.be.eq(ABNORMAL_CONNECTION);
expect(responseDTO.opcode).to.be.eq(
Opcode.LOGOUT
OpCode.LOGOUT
);
done();
}
Expand Down

0 comments on commit a46ef2b

Please sign in to comment.