catch(ConflictException e)
{
// this is okay because it means the project already exists in the database.
}
String newSsid = sessions.switchToProject(originalSsid, projectId);
Session projectSession = sessions.getSession(newSsid);
assertFalse(sessions.sessionExists(originalSsid));
assertTrue(projectSession != null);