mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-06 09:09:40 +02:00
Remove few more implicit conversions
This commit is contained in:
@@ -30,8 +30,8 @@ public:
|
||||
EXPECT_CALL(spellMock, forEachSchool(NotNull())).Times(AtLeast(1)).WillRepeatedly([](const spells::Spell::SchoolCallback & cb)
|
||||
{
|
||||
bool stop = false;
|
||||
cb(SpellSchool(SpellSchool::AIR), stop);
|
||||
cb(SpellSchool(SpellSchool::FIRE), stop);
|
||||
cb(SpellSchool::AIR, stop);
|
||||
cb(SpellSchool::FIRE, stop);
|
||||
});
|
||||
|
||||
EXPECT_CALL(mechanicsMock, isPositiveSpell()).WillRepeatedly(Return(isPositive));
|
||||
|
||||
Reference in New Issue
Block a user