Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/github/codeql-ac…
Browse files Browse the repository at this point in the history
…tion-3.26.10
  • Loading branch information
lvaylet authored Oct 1, 2024
2 parents f07e2de + ecaec08 commit 841e362
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/fixtures/dummy_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

class DummyBackend:
def __init__(self, client=None, **config):
self.good_events = config.get("good_events", None)
self.bad_events = config.get("bad_events", None)
self.sli_value = config.get("sli", None)
self.good_events = config.get("good_events")
self.bad_events = config.get("bad_events")
self.sli_value = config.get("sli")

def good_bad_ratio(self, timestamp, window, slo_config):
return (self.good_events, self.bad_events)
Expand Down

0 comments on commit 841e362

Please sign in to comment.