diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-16 13:08:36 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-16 13:08:36 +0100 |
commit | 6175c0888b2519e39dafbc202925325a181cd39e (patch) | |
tree | 54dd95842a2937f04f691d7bcaec13e9a218ceb0 /core/test/ch | |
parent | 7b8fb6e6b560be6f01b8c6c6c203f53cbbd228fe (diff) | |
download | RustAndDust-6175c0888b2519e39dafbc202925325a181cd39e.zip RustAndDust-6175c0888b2519e39dafbc202925325a181cd39e.tar.gz |
fix tests
Diffstat (limited to 'core/test/ch')
-rw-r--r-- | core/test/ch/asynk/tankontank/BoardUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/test/ch/asynk/tankontank/BoardUtils.java b/core/test/ch/asynk/tankontank/BoardUtils.java index d757861..53d3b0e 100644 --- a/core/test/ch/asynk/tankontank/BoardUtils.java +++ b/core/test/ch/asynk/tankontank/BoardUtils.java @@ -8,7 +8,7 @@ import org.junit.Test; import org.junit.Before; import ch.asynk.tankontank.engine.Tile; -import ch.asynk.tankontank.engine.PossiblePaths; +import ch.asynk.tankontank.engine.Path; import static org.junit.Assert.assertTrue; @@ -43,7 +43,7 @@ public class BoardUtils for(int p = 0; p < n; p++) { - PossiblePaths.Path path = b.possiblePaths.getPath(p); + Path path = b.possiblePaths.getPath(p); int z = path.tiles.size(); assertTrue(path.cost == (z + 1)); |