Skip to content

Commit 8a1157b

Browse files
committed
Fix boo boo
1 parent 38e9a49 commit 8a1157b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/elyses-destructured-enchantments/enchantments.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe('swapTwoCards', () => {
5656

5757
describe('shiftThreeCardsAround', () => {
5858
test('consecutive numbers', () => {
59-
expect(shiftThreeCardsAround([6, 4, 5])).shiftThreeCardsAround([4, 5, 6]);
59+
expect(shiftThreeCardsAround([6, 4, 5])).toStrictEqual([4, 5, 6]);
6060
});
6161

6262
test('drop the face card to the bottom', () => {

0 commit comments

Comments
 (0)