Skip to content

Commit

Permalink
Fix tests, remove enum
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzuber committed May 28, 2021
1 parent 0a5c6d5 commit 7fdde3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions chs/utils/core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
from enum import Enum


class Colors:
RESET = '\x1b[49;0m'
DARK = '\x1b[38;5;232;1m'
Expand Down
3 changes: 2 additions & 1 deletion tests/test_setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import os
import subprocess
import chess

from chs.ui.board import Board
from tests.framework.base_command_test_case import BaseCommandTestCase


ui = Board(1)
ui = Board(1, chess.WHITE)

class TestInit(BaseCommandTestCase):
def test_no_captured_pieces(self):
Expand Down

0 comments on commit 7fdde3f

Please sign in to comment.