Skip to content

Commit

Permalink
Remove assesrtion
Browse files Browse the repository at this point in the history
Signed-off-by: belloibrahv <belloibrahv@gmail.com>
  • Loading branch information
belloibrahv committed Jan 22, 2025
1 parent d6bdbf6 commit 11dc84a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('LoggerService tests', async function () {

it('should be able to return plain information', async () => {
const envName = 'CHAIN_ID';
const res = ConfigService.get(envName) as string | undefined;
const res = ConfigService.get(envName);

expect(LoggerService.maskUpEnv(envName, res)).to.equal(`${envName} = ${res}`);
});
Expand Down

0 comments on commit 11dc84a

Please sign in to comment.