Skip to content

Commit f5e6c37

Browse files
Update test/integration/models/monitor/test_monitor.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 972e576 commit f5e6c37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/models/monitor/test_monitor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ def test_integration_create_get_update_delete_alert_definition(
222222

223223
def wait_for_alert_ready(alert_id, service_type: str):
224224
timeout = 360 # max time alert should take to create
225-
INITIAL_TIMEOUT = 1
225+
initial_timeout = 1
226226
start = time.time()
227-
interval = INITIAL_TIMEOUT
227+
interval = initial_timeout
228228
alert = client.load(AlertDefinition, alert_id, service_type)
229229
while (
230230
getattr(alert, "status", None) == "in progress"

0 commit comments

Comments
 (0)