Skip to content

Commit

Permalink
Merge pull request #65 from equinix-labs/updateTests
Browse files Browse the repository at this point in the history
Update tests
  • Loading branch information
tutkat authored Dec 20, 2024
2 parents 2cb9895 + 4da5827 commit 636ff08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion equinix-openapi-fabric-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>com.equinix</groupId>
<artifactId>equinix-openapi-fabric</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static void removeConnections(UsersItem.UserName userName) {
try {
deleteConnection(uuid);
} catch (ApiException e) {
throw new RuntimeException(e);
System.out.println(e.getMessage());
}
});
} catch (InterruptedException e) {
Expand Down Expand Up @@ -87,7 +87,6 @@ public void createConnectionVdColo() throws ApiException {
new AccessPoint()
.type(AccessPointType.COLO)
.port(new SimplifiedPort()
// .uuid(port.getUuid()))
.uuid(portUuid))
.linkProtocol(new SimplifiedLinkProtocol()
.type(LinkProtocolType.DOT1Q)
Expand Down Expand Up @@ -372,7 +371,7 @@ public static boolean waitForConnectionIsInState(String connectionUuid, EquinixS
}

if (!result) {
System.out.println(result + " Connection has not reached the expected state: " + connectionState[0].getValue() + " current state: " + currentState.getValue());
System.out.println("Connection has not reached the expected state: " + connectionState[0].getValue() + " current state: " + currentState.getValue());
}
return result;
}
Expand Down

0 comments on commit 636ff08

Please sign in to comment.