Skip to content

Commit

Permalink
Loop 1000 times
Browse files Browse the repository at this point in the history
  • Loading branch information
danielboudreau authored and danielboudreau committed Oct 17, 2021
1 parent 3569e83 commit 3eff8da
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -170,7 +170,7 @@ public void testModifyButton() {

@Test
public void testLoop() {
for (int i = 0; i < 1; i++) {
for (int i = 0; i < 1000; i++) {
setUp();
testModifyButton();
tearDown();
Expand All @@ -182,7 +182,7 @@ public void testLoop() {

@Test
public void testLoop2() {
for (int i = 0; i < 1; i++) {
for (int i = 0; i < 1000; i++) {
setUp();
testMoveButton();
tearDown();
Expand Down

0 comments on commit 3eff8da

Please sign in to comment.