subManager.readSubscriptions(topic, subsCallback, null);
res = subsCallback.queue.take();
Assert.assertEquals("Should find just 1 subscriber", 1, res.left().size());
Assert.assertEquals("Should not fail with PubSubException", null, res.right());
Versioned<SubscriptionData> versionedSubData = res.left().get(subid);
Assert.assertEquals(Version.Occurred.CONCURRENTLY, v1.compare(versionedSubData.getVersion()));
SubscriptionData imss = versionedSubData.getValue();
Assert.assertEquals("Found inconsistent subscription state",
data, imss);
Assert.assertEquals("Found inconsistent last consumed seq id",
seqId, imss.getState().getMsgId().getLocalComponent());