Skip to content

Commit 6b22956

Browse files
committed
chore: fix test wording
Signed-off-by: Liran Tal <[email protected]>
1 parent 8f4ce8c commit 6b22956

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/CweManager.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ const { CweManager } = require('../index')
22

33
describe('Cwe Manager', () => {
44
describe('Cwe Manager supports instantiation with custom data', () => {
5-
test('Cwe Manager instnatiated with custom hierarchy', () => {
5+
test('Cwe Manager instantiated with custom hierarchy', () => {
66
const cweManager = new CweManager({
77
cweHierarchy: [{ weaknessId: '31337', parentId: '31338' }]
88
})
99
const result = cweManager.isChildOf({ weaknessId: '31337', parentId: '31338' })
1010
expect(result).toBe(true)
1111
})
1212

13-
test.todo('Cwe Manager instnatiated with custom dictionary')
13+
test.todo('Cwe Manager instantiated with custom dictionary')
1414
})
1515

1616
describe('Cwe Manager getters', () => {

0 commit comments

Comments
 (0)