Skip to content

Commit

Permalink
Fix integration test bug
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Grote <[email protected]>
  • Loading branch information
cmgrote committed Jul 23, 2024
1 parent a1325e3 commit c317f97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void createDashboard() throws AtlanException {
SupersetDashboard toCreate = SupersetDashboard.creator(DASHBOARD_NAME, connection.getQualifiedName())
.build();
AssetMutationResponse response = toCreate.save();
Asset one = response.getUpdatedAssets().get(0);
Asset one = validateSingleCreate(response);
assertTrue(one instanceof SupersetDashboard);
dashboard = (SupersetDashboard) one;
assertNotNull(dashboard.getGuid());
Expand Down

0 comments on commit c317f97

Please sign in to comment.