Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

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

Lines changed: 1 addition & 1 deletion
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)