Skip to content

Commit

Permalink
Fix typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
frack113 committed Mar 6, 2025
1 parent ef69809 commit 2966208
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sigma/modifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class SigmaGreaterThanEqualModifier(SigmaCompareModifier):


class SigmaNotEqualModifier(SigmaCompareModifier):
"""Numeric greater than or equal (>=) matching."""
"""Numeric not equal (!=) matching."""

op: ClassVar[CompareOperators] = CompareOperators.NEQ

Expand Down
2 changes: 1 addition & 1 deletion tests/test_correlations.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def test_correlation_condition():
assert cond.count == 10


def test_correlation_condition():
def test_correlation_neq_condition():
cond = SigmaCorrelationCondition.from_dict({"neq": 10})
assert isinstance(cond, SigmaCorrelationCondition)
assert cond.op == SigmaCorrelationConditionOperator.NEQ
Expand Down

0 comments on commit 2966208

Please sign in to comment.