Skip to content
Snippets Groups Projects
Commit 75af129d authored by Joël Krähemann's avatar Joël Krähemann
Browse files

OO-302: fixed test by removing unnecessary break in for loop.

parent a7b77b7f
No related branches found
No related tags found
No related merge requests found
...@@ -271,7 +271,6 @@ public class FunctionalBlogTest { ...@@ -271,7 +271,6 @@ public class FunctionalBlogTest {
for(String currentTitle: titles){ for(String currentTitle: titles){
if(student0.isTextPresent(currentTitle)){ if(student0.isTextPresent(currentTitle)){
foundTitlesInMonth[j] = true; foundTitlesInMonth[j] = true;
break;
} }
j++; j++;
...@@ -315,8 +314,7 @@ public class FunctionalBlogTest { ...@@ -315,8 +314,7 @@ public class FunctionalBlogTest {
for(String currentTitle: titles){ for(String currentTitle: titles){
if(student0.isTextPresent(currentTitle)){ if(student0.isTextPresent(currentTitle)){
foundTitlesInMonth[j] = true; foundTitlesInYear[j] = true;
break;
} }
j++; j++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment