Skip to content

Commit

Permalink
Corrected names in tests of ADStarMazeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezsieira committed Mar 31, 2013
1 parent cece71c commit a47697a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ADStarMazeTest() {


@Test
public void AStar_Maze1() throws InterruptedException {
public void ADStar_Maze1() throws InterruptedException {
StringMaze maze = new StringMaze(MazeSearch.getTestMaze1());
execute(maze, true);
}
Expand All @@ -48,7 +48,7 @@ public void Dijkstra_Maze1() throws InterruptedException {
}

@Test
public void AStar_Maze2() throws InterruptedException {
public void ADStar_Maze2() throws InterruptedException {
StringMaze maze = new StringMaze(MazeSearch.getTestMaze2());
execute(maze, true);
}
Expand All @@ -60,7 +60,7 @@ public void Dijkstra_Maze2() throws InterruptedException {
}

@Test
public void AStar_Maze3() throws InterruptedException {
public void ADStar_Maze3() throws InterruptedException {
StringMaze maze = new StringMaze(MazeSearch.getTestMaze3());
execute(maze, true);
}
Expand All @@ -72,7 +72,7 @@ public void Dijkstra_Maze3() throws InterruptedException {
}

@Test
public void AStar_Maze4() throws InterruptedException {
public void ADStar_Maze4() throws InterruptedException {
StringMaze maze = new StringMaze(MazeSearch.getTestMaze4());
execute(maze, true);
}
Expand All @@ -84,7 +84,7 @@ public void Dijkstra_Maze4() throws InterruptedException {
}

@Test
public void AStar_Maze5() throws InterruptedException {
public void ADStar_Maze5() throws InterruptedException {
StringMaze maze = new StringMaze(MazeSearch.getTestMaze5());
execute(maze, true);
}
Expand Down

0 comments on commit a47697a

Please sign in to comment.