Skip to content

Commit 3036bad

Browse files
committed
debug test
1 parent 96d817e commit 3036bad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/test/test_org_subs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,14 +922,15 @@ def test_subscription_add_minutes(admin_auth_headers):
922922
f"{API_PREFIX}/subscriptions/add-minutes",
923923
headers=admin_auth_headers,
924924
json={
925-
"oid": new_subs_oid,
925+
"oid": str(new_subs_oid),
926926
"minutes": 75,
927927
"total_price": 350,
928928
"currency": "usd",
929929
"context": "addon",
930930
},
931931
)
932932

933+
print(r.json())
933934
assert r.status_code == 200
934935
assert r.json() == {"updated": True}
935936

0 commit comments

Comments
 (0)