Skip to content

Commit

Permalink
Merge pull request #15 from 0x6675636b796f75676974687562/master
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyweston authored Mar 23, 2023
2 parents 13297c9 + f3020ca commit 3bf6c74
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<version>4.12</version>
</dependency>
<!-- test -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ protected void runChild(final FrameworkMethod method, final RunNotifier notifier
}

private int repeatCount(FrameworkMethod method) {
if (isIgnored(method))
return 1;
if (intermittent(type))
return repetition(type);
if (intermittent(method))
Expand Down
2 changes: 1 addition & 1 deletion tempus-fugit.iml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
<orderEntry type="library" name="Maven: junit:junit:4.10" level="project" />
<orderEntry type="library" name="Maven: junit:junit:4.12" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.jmock:jmock-junit4:2.6.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.jmock:jmock:2.6.0" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.jmock:jmock-legacy:2.6.0" level="project" />
Expand Down
8 changes: 4 additions & 4 deletions tempus-fugit.ipr
Original file line number Diff line number Diff line change
Expand Up @@ -321,15 +321,15 @@
<root url="jar://$MAVEN_REPOSITORY$/cglib/cglib-nodep/2.1_3/cglib-nodep-2.1_3-sources.jar!/" />
</SOURCES>
</library>
<library name="Maven: junit:junit:4.10">
<library name="Maven: junit:junit:4.12">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.10/junit-4.10.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.12/junit-4.12.jar!/" />
</CLASSES>
<JAVADOC>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.10/junit-4.10-javadoc.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.12/junit-4.12-javadoc.jar!/" />
</JAVADOC>
<SOURCES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.10/junit-4.10-sources.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.12/junit-4.12-sources.jar!/" />
</SOURCES>
</library>
<library name="Maven: org.hamcrest:hamcrest-core:1.3">
Expand Down

0 comments on commit 3bf6c74

Please sign in to comment.