Skip to content

Commit 7855d2d

Browse files
authored
Update nameValidator.spec.ts
1 parent ec4e223 commit 7855d2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/nameValidator.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('NameValidator', () => {
88
expect(NameValidator.validateNotebookName('123')).toBeFalsy();
99
});
1010

11-
it('should not map to an error message with empty or whitespace names', () => {
11+
it('should map to an error message with empty or whitespace names', () => {
1212
expect(NameValidator.validateNotebookName('')).toBeTruthy();
1313
expect(NameValidator.validateNotebookName(' ')).toBeTruthy();
1414
});

0 commit comments

Comments
 (0)