Skip to content

Commit f8bbdf0

Browse files
committed
Removed misleading description
1 parent e84da29 commit f8bbdf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// We will use the same function, but write tests for it using Jest in this file.
33
const getCardValue = require("../implement/3-get-card-value");
44

5-
test("should return 11 for Ace of Spades", () => {
5+
test("should return 11 for an Ace", () => {
66
const aceofSpades = getCardValue("A♠");
77
expect(aceofSpades).toEqual(11);
88
});

0 commit comments

Comments
 (0)