Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix macOS alert collection for E2E Vulnerability Detection tests #5337

Merged
merged 2 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ All notable changes to this project will be documented in this file.

### Fixed

- Fix macOS alert collection for E2E Vulnerability Detection tests ([#5337](https://github.com/wazuh/wazuh-qa/pull/5337)) \- (Framework)
- Fix packages in Windows and macOS upgrade cases ([#5223](https://github.com/wazuh/wazuh-qa/pull/5223)) \- (Framework + Tests)
- Fix vulnerabilities and add new packages to Vulnerability Detector E2E tests ([#5234](https://github.com/wazuh/wazuh-qa/pull/5234)) \- (Tests)
- Fix provision macOS endpoints with npm ([#5128](https://github.com/wazuh/wazuh-qa/pull/5158)) \- (Tests)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,8 @@ def get_package_system(host: str, host_manager: HostManager) -> str:
return system


def get_vulnerability_alerts(
host_manager: HostManager,
agent_list,
packages_data: List,
greater_than_timestamp: str = "",
) -> Dict:
def get_vulnerability_alerts(host_manager: HostManager, agent_list, packages_data: List,
greater_than_timestamp: str = "") -> Dict:
alerts = get_vulnerabilities_from_alerts_by_agent(
host_manager, agent_list, greater_than_timestamp=greater_than_timestamp
)
Expand Down
Loading
Loading