Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
VihasMakwana committed Jul 23, 2024
1 parent 8940f7d commit 82dc103
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions metricbeat/module/system/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def test_process_summary(self):
for evt in output:
self.assert_fields_are_documented(evt)
if evt.get("error", None) is not None:
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
continue

summary = evt["system"]["process"]["summary"]
Expand Down Expand Up @@ -424,7 +424,7 @@ def test_process(self):
found_cmdline = False
for evt in output:
if evt.get("error", None) is not None:
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
continue
process = evt["system"]["process"]
# Not all process will have 'cmdline' due to permission issues,
Expand Down Expand Up @@ -485,7 +485,7 @@ def test_process_unix(self):
found_cwd = not sys.platform.startswith("linux")
for evt in output:
if evt.get("error", None) is not None:
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
continue
found_cwd |= "working_directory" in evt["process"]

Expand Down

0 comments on commit 82dc103

Please sign in to comment.