Skip to content

Commit 5e44659

Browse files
committed
updated invalid card values in 3-get-card-value-test.js
1 parent 5ad6379 commit 5e44659

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/3-get-card-value.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ test('Should throw "Invalid card" for input "♠♥♦♣"', () => {
4040
expect(() => getCardValue("♠♥♦♣")).toThrow("Invalid card");
4141
});
4242

43-
test('Should throw "Invalid card" for input "♠♥♦♣"', () => {
43+
test('Should throw "Invalid card" for input "5$"', () => {
4444
expect(() => getCardValue("5$")).toThrow("Invalid card");
4545
});
4646

47-
test('Should throw "Invalid card" for input "♠♥♦♣"', () => {
47+
test('Should throw "Invalid card" for input "£50"', () => {
4848
expect(() => getCardValue("£50")).toThrow("Invalid card");
4949
});
5050

0 commit comments

Comments
 (0)