Skip to content

Commit db8f175

Browse files
committed
fix max testcase
1 parent 1c5f610 commit db8f175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/bestvike/linq/enumerable/MaxTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ void Max_NullableDateTime_NullSelector_ThrowsArgumentNullException() {
711711
@Test
712712
void Max_String_NullSelector_ThrowsArgumentNullException() {
713713
Func1<String, String> selector = null;
714-
assertThrows(ArgumentNullException.class, () -> Linq.<String>empty().maxNull(selector));
714+
assertThrows(ArgumentNullException.class, () -> Linq.<String>empty().max(selector));
715715
}
716716

717717
@Test

0 commit comments

Comments
 (0)