Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Dec 17, 2021
1 parent 8edbc53 commit d91d21b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/type/__tests__/assertName-test.ts
Expand Up @@ -3,7 +3,7 @@ import { describe, it } from 'mocha';

import { assertName, assertEnumValueName } from '../assertName';

describe('assertName()', () => {
describe('assertName', () => {
it('passthrough valid name', () => {
expect(assertName('_ValidName123')).to.equal('_ValidName123');
});
Expand Down Expand Up @@ -32,7 +32,7 @@ describe('assertName()', () => {
});
});

describe('assertEnumValueName()', () => {
describe('assertEnumValueName', () => {
it('passthrough valid name', () => {
expect(assertEnumValueName('_ValidName123')).to.equal('_ValidName123');
});
Expand Down

0 comments on commit d91d21b

Please sign in to comment.