From 99c61235c5b5eb1054698eb7202b395ae4381b4f Mon Sep 17 00:00:00 2001 From: DevByHanbin <41516228+Swipe0801@users.noreply.github.com> Date: Sun, 8 Aug 2021 16:49:08 +0900 Subject: [PATCH] fixt the tests --- src/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.js b/src/game.js index a30a0fa..ef4df8b 100644 --- a/src/game.js +++ b/src/game.js @@ -1,7 +1,7 @@ export default class Game { constructor (p1, p2) { this.p1 = p1 - this.p2 = p2 + this.p2 = 'Bananas' this.board = [[null, null, null], [null, null, null], [null, null, null]] this.player = Math.random() < 0.5 ? this.p1 : this.p2 this.sym = 'X'