Skip to content

Commit b33945b

Browse files
committed
Updating names in test file to match those in test.toml
1 parent 177987c commit b33945b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/diffie-hellman/diffie-hellman.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ describe('diffie-hellman', () => {
1313
new DiffieHellman(10, 13);
1414
}).toThrow();
1515
});
16-
17-
describe('input validation', () => {
16+
17+
describe('private key is greater than 1 and less than p', () => {
1818
const p = 23;
1919
const g = 5;
2020
const diffieHellman = new DiffieHellman(p, g);

0 commit comments

Comments
 (0)