We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2087f23 commit e68f0b2Copy full SHA for e68f0b2
rxjava-core/src/test/java/rx/observers/TestSubscriberTest.java
@@ -66,7 +66,8 @@ public void testAssertNotMatchValue() {
66
oi.subscribe(o);
67
68
thrown.expect(AssertionError.class);
69
- thrown.expectMessage("Value at index: 1 expected to be [3] but was: [2]");
+ thrown.expectMessage("Value at index: 1 expected to be [3] (Integer) but was: [2] (Integer)");
70
+
71
72
o.assertReceivedOnNext(Arrays.asList(1, 3));
73
assertEquals(2, o.getOnNextEvents().size());
0 commit comments