mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-06 09:09:40 +02:00
Remove duplicate semicolons
This commit is contained in:
@@ -71,7 +71,7 @@ protected:
|
||||
|
||||
const auto otherZone = subject->getZones().at(otherZoneId);
|
||||
GTEST_ASSERT_NE(otherZone, nullptr);
|
||||
EXPECT_THAT(thisZone->getTreasureInfo(), ContainerEq(otherZone->getTreasureInfo()));;
|
||||
EXPECT_THAT(thisZone->getTreasureInfo(), ContainerEq(otherZone->getTreasureInfo()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ TEST_F(ResourceManagerTest, notifyGoalImplemented)
|
||||
EXPECT_FALSE(rm->notifyGoalCompleted(invalidGoal));
|
||||
EXPECT_FALSE(rm->hasTasksLeft());
|
||||
|
||||
TResources res(0,0,0,0,0,0,12345);;
|
||||
TResources res(0,0,0,0,0,0,12345);
|
||||
rm->reserveResoures(res, invalidGoal);
|
||||
ASSERT_FALSE(rm->hasTasksLeft()) << "Can't push Invalid goal";
|
||||
EXPECT_FALSE(rm->notifyGoalCompleted(invalidGoal));
|
||||
|
||||
Reference in New Issue
Block a user