Skip to content

Commit c799bc0

Browse files
ragunathjawaharakarnokd
authored andcommitted
2.x: Fix typo in error message. (#5354)
1 parent 96b8d58 commit c799bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/reactivex/observers/BaseTestConsumer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ public final U assertValueSequence(Iterable<? extends T> sequence) {
549549
throw fail("More values received than expected (" + i + ")");
550550
}
551551
if (expectedNext) {
552-
throw fail("Fever values received than expected (" + i + ")");
552+
throw fail("Fewer values received than expected (" + i + ")");
553553
}
554554
return (U)this;
555555
}

0 commit comments

Comments
 (0)