mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Fixed final asserts in tests (OblivionRingTest still fails)
This commit is contained in:
parent
11bda039f5
commit
7ed17d0fdb
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ public class OblivionRingTest extends CardTestPlayerBase {
|
||||||
assertLife(playerA, 20);
|
assertLife(playerA, 20);
|
||||||
assertLife(playerB, 20);
|
assertLife(playerB, 20);
|
||||||
assertPermanentCount(playerA, "Oblivion Ring", 1);
|
assertPermanentCount(playerA, "Oblivion Ring", 1);
|
||||||
assertPermanentCount(playerB, "Frost Titan", 0);
|
assertPermanentCount(playerB, "Craw Wurm", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -54,6 +54,6 @@ public class OblivionRingTest extends CardTestPlayerBase {
|
||||||
assertLife(playerA, 20);
|
assertLife(playerA, 20);
|
||||||
assertLife(playerB, 20);
|
assertLife(playerB, 20);
|
||||||
assertPermanentCount(playerA, "Oblivion Ring", 0);
|
assertPermanentCount(playerA, "Oblivion Ring", 0);
|
||||||
assertPermanentCount(playerB, "Frost Titan", 1);
|
assertPermanentCount(playerB, "Craw Wurm", 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue