mirror of https://github.com/apache/jclouds.git
Change the test name testListAccount to reflect the api method listAccounts
This commit is contained in:
parent
66499ad663
commit
ed076a5c4a
|
@ -18,12 +18,12 @@
|
|||
*/
|
||||
package org.jclouds.cloudstack.features;
|
||||
|
||||
import static org.testng.Assert.assertEquals;
|
||||
|
||||
import org.jclouds.cloudstack.domain.Account;
|
||||
import org.jclouds.cloudstack.domain.User;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
import static org.testng.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* Tests behavior of {@code AccountClient}
|
||||
*
|
||||
|
@ -32,7 +32,7 @@ import org.testng.annotations.Test;
|
|||
@Test(groups = "live", singleThreaded = true, testName = "AccountClientLiveTest")
|
||||
public class AccountClientLiveTest extends BaseCloudStackClientLiveTest {
|
||||
|
||||
public void testListAccount() throws Exception {
|
||||
public void testListAccounts() throws Exception {
|
||||
for (Account securityAccount : client.getAccountClient().listAccounts())
|
||||
checkAccount(securityAccount);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue