Skip to content

Commit 9f44c2f

Browse files
fix: correct import path in SubstitutionCipher test
1 parent c93cda3 commit 9f44c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ciphers/test/SubstitutionCipher.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it, expect } from 'vitest'
22
import {
33
substitutionCipherEncryption,
44
substitutionCipherDecryption
5-
} from './SubstitutionCipher'
5+
} from '../ciphers/SubstitutionCipher.js'
66

77
describe('Substitution Cipher', () => {
88
const key = 'QWERTYUIOPASDFGHJKLZXCVBNM'

0 commit comments

Comments
 (0)