Return tha failing tests and fix them - a problem removing user from group.

cusax-fix
Damian Minkov 16 years ago
parent 75e2478b46
commit 2ebeeff170

@ -547,7 +547,9 @@ public void removeGroup(ContactGroupMsnImpl groupToRemove)
for (int i = 0; i < contacts.length; i++)
{
logger.trace("removing contact from group " + contacts[i]);
msnProvider.getMessenger().removeFriend(contacts[i].getEmail(), false);
msnProvider.getMessenger().removeFriend(contacts[i].getEmail(),
groupToRemove.getSourceGroup().getGroupId());
}
// wait max seconds or the last removed contact

@ -147,8 +147,8 @@ public static Test suite()
//the following 2 need to be run in the specified order.
suite.addTest(new TestOperationSetBasicInstantMessaging(
"firstTestReceiveMessage"));
// suite.addTest(new TestOperationSetBasicInstantMessaging(
// "thenTestSendMessage"));
suite.addTest(new TestOperationSetBasicInstantMessaging(
"thenTestSendMessage"));
return suite;
}

Loading…
Cancel
Save