Skip to content

Commit 29b1e29

Browse files
committed
Editing
1 parent 7139e24 commit 29b1e29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ assertEquals(fiveofHearts, 5);
5555
// When the function is called with such a card,
5656
// Then it should return the value 10, as these cards are worth 10 points each in blackjack.
5757

58-
const kingofDiamonds = getCardValue("K");
58+
const kingofDiamonds = getCardValue("K");
5959
assertEquals(kingofDiamonds, 10);
60-
const queenofClubs = getCardValue("Q");
60+
const queenofClubs = getCardValue("Q");
6161
assertEquals(queenofClubs, 10);
62-
const jackofHearts = getCardValue("J");
62+
const jackofHearts = getCardValue("J");
6363
assertEquals(jackofHearts, 10);
64-
const tenofSpades = getCardValue("10");
64+
const tenofSpades = getCardValue("10");
6565
assertEquals(tenofSpades, 10);
6666
// Handle Ace (A):
6767
// Given a card with a rank of "A",

0 commit comments

Comments
 (0)