From 847b834e030271ee29cb986ab052578e19a98ac1 Mon Sep 17 00:00:00 2001 From: fdai7892 Date: Wed, 7 Feb 2024 22:40:26 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20Funktiosname=20gek=C3=BCrzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/test_duellist_spielesammlung_projekt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 18c05af..9df6a4b 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -8,7 +8,7 @@ void setUp(void) {} void tearDown(void) {} -void test_coinflip_player_x_starts(void) { +void test_coinflip_x_starts(void) { // Arrange TicTacToeGame game; @@ -20,7 +20,7 @@ void test_coinflip_player_x_starts(void) { TEST_ASSERT_TRUE(game.currentPlayer == PLAYER_X || game.currentPlayer == PLAYER_O); } -void test_coinflip_player_o_starts(void) { +void test_coinflip_o_starts(void) { // Arrange TicTacToeGame game;