Skip to content

Selenium test for source lineage audit detail#2701

Merged
XingY merged 2 commits intodevelopfrom
fb_issue53825
Sep 23, 2025
Merged

Selenium test for source lineage audit detail#2701
XingY merged 2 commits intodevelopfrom
fb_issue53825

Conversation

@XingY
Copy link
Contributor

@XingY XingY commented Sep 19, 2025


Map<String, Object> event = executeSelectCommand(cn, cmd).get(0);

String datachanges = getLogColumnDisplayValue(event, "datachanges").toLowerCase();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Consider using case-insensitive comparison instead:

String dataChanges = getLogColumnDisplayValue(event, "datachanges");
log(dataChanges);
for (String change : changes)
    assertTrue("Expected change not found in audit log data changes: " + change, Strings.CI.contains(dataChanges, change));

@XingY XingY merged commit bdbfaa1 into develop Sep 23, 2025
5 of 6 checks passed
@XingY XingY deleted the fb_issue53825 branch September 23, 2025 00:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants