Skip to content

Commit f328301

Browse files
committed
Fix comments
1 parent 9cbfa64 commit f328301

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ allprojects {
77

88
// sourceCompatibility = 11
99

10-
ext.junitVersion = '5.6.2'
10+
ext.junitVersion = '5.7.0'
1111

1212
repositories {
1313
jcenter()
@@ -32,6 +32,6 @@ test {
3232
dependencies {
3333
// Contains URL and ISBN validators
3434
implementation 'commons-validator:commons-validator:1.6'
35-
testImplementation 'org.mockito:mockito-junit-jupiter:3.3.0'
35+
testImplementation 'org.mockito:mockito-junit-jupiter:3.5.10'
3636
}
3737

src/test/java/com/oreilly/ParameterizedTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void checkPrimesLessThan100(int arg) {
7373
// Factory method for the @MethodSource
7474
// no arguments
7575
// static method (factory method)
76-
// returns Stream, Array, Iterable
76+
// returns Stream, Array, Iterable, Iterator
7777
private static IntStream primesLessThan100() {
7878
return IntStream.rangeClosed(2, 100)
7979
.filter(UtilityMethods::isPrime);

0 commit comments

Comments
 (0)