Skip to content

Commit ab117d3

Browse files
committed
change "numeric card card" to "number card"
1 parent 5f12297 commit ab117d3

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
@@ -19,7 +19,7 @@ test(`Should return 10 when given a K, Q or J card`, () => {
1919
expect(getCardValue("J♠")).toEqual(10);
2020
});
2121

22-
test(`Should return the number of the card given a numeric card card`, () => {
22+
test(`Should return the number of the card given a number card`, () => {
2323
expect(getCardValue("10♠")).toEqual(10);
2424
expect(getCardValue("2♠")).toEqual(2);
2525
expect(getCardValue("3♠")).toEqual(3);

0 commit comments

Comments
 (0)