This is an automated email from the ASF dual-hosted git repository.
gaul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jclouds.git
The following commit(s) were added to refs/heads/master by this push:
new 62abf39575 Correct testName
62abf39575 is described below
commit 62abf3957574df533e5562074984c3bd9eda136c
Author: Andrew Gaul <[email protected]>
AuthorDate: Tue Feb 20 20:14:32 2024 +0900
Correct testName
testng 7.5.1 previously failed with this. References #171.
---
.../java/org/jclouds/aws/ec2/parse/DescribeInstancesResponseTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/aws-ec2/src/test/java/org/jclouds/aws/ec2/parse/DescribeInstancesResponseTest.java
b/providers/aws-ec2/src/test/java/org/jclouds/aws/ec2/parse/DescribeInstancesResponseTest.java
index 540b352f0a..c65d4e30f6 100644
---
a/providers/aws-ec2/src/test/java/org/jclouds/aws/ec2/parse/DescribeInstancesResponseTest.java
+++
b/providers/aws-ec2/src/test/java/org/jclouds/aws/ec2/parse/DescribeInstancesResponseTest.java
@@ -43,7 +43,7 @@ import com.google.common.collect.ImmutableSet;
*/
// NOTE:without testName, this will not call @Before* and fail w/NPE during
// surefire
-@Test(groups = "unit", testName = "AWSDescribeInstancesResponseHandlerTest")
+@Test(groups = "unit", testName = "DescribeInstancesResponseHandlerTest")
public class DescribeInstancesResponseTest extends BaseEC2HandlerTest {
private DateService dateService;