raids plugin: fix rotation solver

This commit is contained in:
15987632
2019-11-11 08:22:41 -05:00
parent 639006997c
commit e3edc16f86
3 changed files with 30 additions and 1 deletions
@@ -69,4 +69,12 @@ public class RotationSolverTest
RotationSolver.solve(rooms);
assertArrayEquals(new RaidRoom[]{VASA, SHAMANS, VESPULA, GUARDIANS}, rooms);
}
@Test
public void testSolve5()
{
RaidRoom[] rooms = new RaidRoom[]{GUARDIANS, UNKNOWN_COMBAT, SHAMANS, VASA};
RotationSolver.solve(rooms);
assertArrayEquals(new RaidRoom[]{GUARDIANS, VESPULA, SHAMANS, VASA}, rooms);
}
}