Skip to content

Commit 1c0ec53

Browse files
committed
style
1 parent 0c71e53 commit 1c0ec53

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

mergin/test/test_client.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2763,23 +2763,19 @@ def test_workspace_requests(mc2: MerginClient):
27632763
project_info = mc2.project_info(test_project_fullname)
27642764
ws_id = project_info.get("workspace_id")
27652765

2766-
usage = mc2.workspace_usage(ws_id)
2766+
usage = mc2.workspace_usage(ws_id)
27672767
# Check type and common value
27682768
assert type(usage) == dict
27692769
assert usage["api"]["allowed"] == True
27702770
assert usage["history"]["quota"] == 214748364800
27712771
assert usage["history"]["usage"] == 0
27722772

2773-
service = mc2.workspace_service(ws_id)
2773+
service = mc2.workspace_service(ws_id)
27742774
# Check type and common value
27752775
assert type(service) == dict
27762776
assert service["action_required"] == False
27772777
assert service["plan"]
27782778
assert service["plan"]["is_paid_plan"] == False
27792779
assert service["plan"]["product_id"] == None
2780-
assert service["plan"]["type"] == 'custom'
2780+
assert service["plan"]["type"] == "custom"
27812781
assert service["subscription"] == None
2782-
2783-
2784-
2785-

0 commit comments

Comments
 (0)