Merge pull request #8178 from awjackson/csp_booster_fix

Fix Coldsnap booster generation
This commit is contained in:
Oleg Agafonov 2021-09-05 01:34:46 +04:00 committed by GitHub
commit 7ff6e73a19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 9 deletions

View file

@ -248,14 +248,6 @@ public class BoosterGenerationTest extends MageTestBase {
}
}
@Test
public void testColdSnap_BoosterMustHaveOneSnowLand() {
for (int i = 0; i < 10; i++) {
List<Card> booster = Coldsnap.getInstance().createBooster();
assertTrue("coldsnap's booster must contain 1 snow covered land", booster.stream().anyMatch(card -> card.isBasic() && card.getName().startsWith("Snow-Covered ")));
}
}
@Test
public void testModernHorizons_BoosterMustHaveOneSnowLand() {
for (int i = 0; i < 10; i++) {