Upgraded mockito versions.

Instead of forcing reflection to depend on latest kotlin version, I have a feeling the dependency is due to older mockito depending on older reflection.
This commit is contained in:
yairm210
2021-08-20 15:45:46 +03:00
parent 85ed8a27d3
commit 5779bdaa4f
3 changed files with 3 additions and 15 deletions

View File

@ -115,13 +115,9 @@ class UnitMovementAlgorithmsTests {
for (type in ruleSet.unitTypes) {
unit.baseUnit = BaseUnit().apply { unitType = type.key; ruleset = ruleSet }
unit.updateUniques()
println(type.key + " " + unit.movement.canPassThrough(tile))
println()
Assert.assertTrue("$type cannot be in Ice", (
Assert.assertTrue("$type cannot be in Ice", (
type.value.uniques.contains("Can enter ice tiles"))
|| type.value.uniques.contains("Can pass through impassable tiles"
) == unit.movement.canPassThrough(tile))