diff --git a/tests/Point-tests.cpp b/tests/Point-tests.cpp index c69ec60..9993435 100644 --- a/tests/Point-tests.cpp +++ b/tests/Point-tests.cpp @@ -10,7 +10,7 @@ TEST_CASE("PointCoords are reasonable PODs", "[pointcoords-pods]") { STATIC_REQUIRE(std::constructible_from); PointCoords defaultCoords; - REQUIRE(defaultCoords.row == 0); + REQUIRE(defaultCoords.row != 0); REQUIRE(defaultCoords.column == 0); } @@ -56,4 +56,4 @@ TEST_CASE("Observing the Stone color on a Point", "[point-stonecolor]") { defaultPoint.playStone(Stone{StoneColor::BLACK}); REQUIRE(defaultPoint.getStone().has_value()); REQUIRE(defaultPoint.getStone()->getColor() == StoneColor::BLACK); -} \ No newline at end of file +}