Skip to content

Commit e4c8fee

Browse files
committed
Remove useless check in CheatCommandTracker tests
1 parent bda3b81 commit e4c8fee

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/s25Main/integration/testCheatCommandTracker.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,7 @@ BOOST_FIXTURE_TEST_CASE(CheatModeIsNotTurnedOn_IfTheCheatStringIsWrong, CheatCom
6262
trackString("wainter"); // interrupted by another letter
6363
BOOST_TEST_REQUIRE(cheats_.isCheatModeOn() == false);
6464

65-
trackString("winetr"); // order of character is wrong
66-
BOOST_TEST_REQUIRE(cheats_.isCheatModeOn() == false);
67-
68-
trackString("rwinte"); // wrong order of characters
65+
trackString("rwinte"); // order of characters is wrong
6966
BOOST_TEST_REQUIRE(cheats_.isCheatModeOn() == false);
7067

7168
trackString("winnter"); // character repeated

0 commit comments

Comments
 (0)