Skip to content

Commit ca10f97

Browse files
committed
test formatting with clang-format
1 parent 8169a86 commit ca10f97

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

tests/test.cpp

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,7 @@ TEST_CASE("Board print", "[board]") {
9999
REQUIRE(expected_output == ss.str());
100100
}
101101

102-
TEST_CASE("Board move", "[board, piece]") {
103-
Board chessboard{};
104-
chessboard.move("d4");
105-
chessboard.move("e5");
106-
chessboard.move("dxe5");
107-
chessboard.move("Nc6");
108-
chessboard.move("Nf3");
109-
chessboard.move("d4");
110-
chessboard.move("d4");
111-
chessboard.move("d4");
112-
}
113-
114-
TEST_CASE("Print Position from FEN", "[board, fen]") {
102+
TEST_CASE("Print Position from FEN", "[board],[fen]") {
115103
std::stringstream ss;
116104
// redirect cout to stringstream, save old buffer
117105
auto old_buf = std::cout.rdbuf(ss.rdbuf());

0 commit comments

Comments
 (0)