Skip to content

Commit d873f5c

Browse files
authored
Merge pull request #1981 from atlanhq/dependencies
Minor integration test update to improve repeatability
2 parents 59667de + 5fe7b2e commit d873f5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1363,12 +1363,14 @@ void searchBySpecificTerm() throws AtlanException, InterruptedException {
13631363
@Test(
13641364
groups = {"asset.update.column.removeTerms"},
13651365
dependsOnGroups = {"asset.update.column.replaceTerms"})
1366-
void updateColumnRemoveTerms() throws AtlanException {
1366+
void updateColumnRemoveTerms() throws AtlanException, InterruptedException {
13671367
Column column = Column.replaceTerms(client, column5.getQualifiedName(), COLUMN_NAME5, null);
13681368
validateUpdatedColumn(column);
13691369
column = Column.get(client, column5.getQualifiedName(), true);
13701370
validateCompleteColumn(column);
13711371
validateHasTerms(column, Collections.emptySet());
1372+
// Add a short delay for audit log to be fully consistent
1373+
Thread.sleep(2000);
13721374
}
13731375

13741376
private void validateHasTerms(Column column, Set<GlossaryTerm> terms) {

0 commit comments

Comments
 (0)