tests: fix typo in waiting for qa run to stop test! (#1857)

Fixes not properly testing if activeQA is null, hopefully fixes
intermittent test failures!
This commit is contained in:
Ilya Kreymer 2024-06-11 08:07:55 -07:00 committed by GitHub
parent a03bc06473
commit 2ffb37bd14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -387,7 +387,7 @@ def test_run_qa_not_running(
count = 0
while count < MAX_ATTEMPTS:
r = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawls/{crawler_crawl_id}/activeQA",
f"{API_PREFIX}/orgs/{default_org_id}/crawls/{crawler_crawl_id}/qa/activeQA",
headers=crawler_auth_headers,
)
data = r.json()