> +import org.testng.annotations.Test; > + > +import com.google.common.collect.ImmutableList; > + > +@Test(groups = "live", testName = "MembersApiLiveTest") > +public class MembersApiLiveTest extends BaseEtcdApiLiveTest { > + > + private String selfID; > + private Member nonSelfMember; > + private Member addedMember; > + > + @BeforeClass > + protected void init() { > + String id = api.statisticsApi().self().id(); > + assertNotNull(id); > + selfID = id;
Avoid the intermediate variable and directly assign `selfID`. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/196/files#r36680984