diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-05 23:29:07 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-05 23:29:07 +0200 |
commit | 55b19cef1d4594c0e4fe185b446eb59ad5f6bc85 (patch) | |
tree | 999ba0366dc32a76a783675d83a481ae13863193 /test/jrummikub | |
parent | 511b1139eae65e7eaae24596d76c2835346b3884 (diff) | |
download | JRummikub-55b19cef1d4594c0e4fe185b446eb59ad5f6bc85.tar JRummikub-55b19cef1d4594c0e4fe185b446eb59ad5f6bc85.zip |
Add stone dealing to RoundControl and fix some tests... again.
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@160 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'test/jrummikub')
-rw-r--r-- | test/jrummikub/control/RoundControlTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jrummikub/control/RoundControlTest.java b/test/jrummikub/control/RoundControlTest.java index f716e27..116786e 100644 --- a/test/jrummikub/control/RoundControlTest.java +++ b/test/jrummikub/control/RoundControlTest.java @@ -67,7 +67,7 @@ public class RoundControlTest { private void checkTableDisplay() { Iterator<Pair<StoneSet, Position>> stoneSetsView = view.tablePanel.stoneSets .iterator(); - Iterator<Pair<StoneSet, Position>> stoneSetsModel = testGameState.table.sets + Iterator<Pair<StoneSet, Position>> stoneSetsModel = testGameState.table.clone().sets .iterator(); while (stoneSetsView.hasNext()) { |