Skip to content

Commit

Permalink
Reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Mar 17, 2024
1 parent 70723c6 commit 32b7e9e
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions tests/test_correlations.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,14 +432,9 @@ def test_correlation_condition_with_field():

def test_correlation_condition_with_field_to_dict():
assert SigmaCorrelationCondition(
op=SigmaCorrelationConditionOperator.GTE,
count=10,
fieldref="test"
).to_dict() == {
"field": "test",
"gte": 10
}

op=SigmaCorrelationConditionOperator.GTE, count=10, fieldref="test"
).to_dict() == {"field": "test", "gte": 10}


def test_correlation_condition_invalid_multicond():
with pytest.raises(
Expand Down

0 comments on commit 32b7e9e

Please sign in to comment.