Fix up tests for new invalid range click behaviour

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@226 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-10 05:53:31 +02:00
parent 32d07341a5
commit cdd0949db3

View file

@ -474,7 +474,7 @@ public class TurnControlTest {
// Select second stone
mockView.tablePanel.rangeClickEvent.emit(stone2, false);
assertCollection(Arrays.asList(stone2));
assertCollection(Arrays.asList(stone1, stone2));
}
@ -583,7 +583,7 @@ public class TurnControlTest {
// Select second stone
mockView.playerPanel.handPanel.rangeClickEvent.emit(stone2, false);
assertCollection(Arrays.asList(stone2));
assertCollection(Arrays.asList(stone1, stone2));
}