2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

update devtools (#3446)

* update devtools

* fix style
This commit is contained in:
Matthias Mair
2022-08-01 06:35:23 +02:00
committed by GitHub
parent 6118d1319c
commit 07f427226d
2 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ print("Testing InvenTree API endpoint")
response = requests.get(url)
assert(response.status_code == 200)
assert response.status_code == 200
print("- Response 200 OK")
@ -25,11 +25,11 @@ required_keys = [
]
for key in required_keys:
assert(key in data)
assert key in data
print(f"- Found key '{key}'")
# Check that the worker is running
assert(data['worker_running'])
assert data['worker_running']
print("- Background worker is operational")