Github user smarthi commented on a diff in the pull request:
https://github.com/apache/incubator-streams/pull/331#discussion_r89666770
--- Diff:
streams-contrib/streams-provider-google/google-gplus/src/test/java/org/apache/streams/gplus/test/processors/GooglePlusTypeConverterIT.java
---
@@ -121,16 +122,10 @@ public void testProcessActivity() throws IOException,
ActivitySerializerExceptio
GooglePlusActivityUtil.updateActivity(gPlusActivity, activity);
assertEquals(retList.size(), 1);
- assert (retList.get(0).getDocument() instanceof Activity);
+ assert(retList.get(0).getDocument() instanceof Activity);
--- End diff --
change to Assert.assertTrue(retList.get(0) instanceOf Activity);
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---