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 typos #115

Merged
merged 1 commit into from
Dec 6, 2024
Merged
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
10 changes: 5 additions & 5 deletions tests/nmap_agent_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
SCAN_RESULT_NO_PRODUCT = {
"nmaprun": {
"@scanner": "nmap",
"@args": "nmap -sV -n -p 0-6111515135 -T3 -sS --script banner -sC -oX /tmp/xm -oN /tmp/normal photo-rw.som.cm",
"@args": "nmap -sV -n -p 0-6111515135 -T3 -sS --script banner -sC -oX /tmp/xm -oN /tmp/normal photo-rw.some.cm",
"@start": "11423487",
"@startstr": "Sun Aug 32 24:56:27 2424",
"@version": "5.50",
Expand Down Expand Up @@ -985,7 +985,7 @@ def testAgent_whenOsClassIsList_fingerprintMessageShouldHaveOs(
agent_persist_mock: Dict[Union[str, bytes], Union[str, bytes]],
mocker: plugin.MockerFixture,
) -> None:
"""Ensure the agent handel osclass when it's a list."""
"""Ensure the agent handle osclass when it's a list."""
del agent_persist_mock
product_fake_output = {
"nmaprun": {
Expand Down Expand Up @@ -1057,7 +1057,7 @@ def testAgent_whenOsMatchIsEmptyList_fingerprintMessageShouldHaveOs(
agent_persist_mock: Dict[Union[str, bytes], Union[str, bytes]],
mocker: plugin.MockerFixture,
) -> None:
"""Ensure the agent handel osmatch when it's an empty list."""
"""Ensure the agent handle osmatch when it's an empty list."""
del agent_persist_mock
product_fake_output = {
"nmaprun": {
Expand Down Expand Up @@ -1102,7 +1102,7 @@ def testAgent_whenOsMatchIsList_fingerprintMessageShouldHaveOs(
agent_persist_mock: Dict[Union[str, bytes], Union[str, bytes]],
mocker: plugin.MockerFixture,
) -> None:
"""Ensure the agent handel osmatch when it's a list."""
"""Ensure the agent handle osmatch when it's a list."""
del agent_persist_mock
product_fake_output = {
"nmaprun": {
Expand Down Expand Up @@ -1251,7 +1251,7 @@ def testAgentLifecycle_whenDomainTCPWrappedService_emitsNoService(
agent_persist_mock: Dict[Union[str, bytes], Union[str, bytes]],
mocker: plugin.MockerFixture,
) -> None:
"""Ensure the agent handel osmatch when it's a list."""
"""Ensure the agent handle osmatch when it's a list."""
del agent_persist_mock
product_fake_output = {
"nmaprun": {
Expand Down
Loading