Skip to content

Commit c317f97

Browse files
committed
Fix integration test bug
Signed-off-by: Christopher Grote <[email protected]>
1 parent a1325e3 commit c317f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-tests/src/test/java/com/atlan/java/sdk/SupersetAssetTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void createDashboard() throws AtlanException {
4949
SupersetDashboard toCreate = SupersetDashboard.creator(DASHBOARD_NAME, connection.getQualifiedName())
5050
.build();
5151
AssetMutationResponse response = toCreate.save();
52-
Asset one = response.getUpdatedAssets().get(0);
52+
Asset one = validateSingleCreate(response);
5353
assertTrue(one instanceof SupersetDashboard);
5454
dashboard = (SupersetDashboard) one;
5555
assertNotNull(dashboard.getGuid());

0 commit comments

Comments
 (0)