Skip to content

Commit afbca0e

Browse files
committed
Fix test URL
1 parent e826613 commit afbca0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/test/test_org_subs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_create_sub_org_and_invite_new_user(admin_auth_headers):
7070

7171
def test_validate_new_org_not_activated(admin_auth_headers):
7272
r = requests.get(
73-
f"{API_PREFIX}/orgs/{new_subs_oid}/subscriptions/is-activated/123",
73+
f"{API_PREFIX}/subscriptions/is-activated/123",
7474
heaqders=admin_auth_headers,
7575
)
7676
assert r.status_code == 200
@@ -137,7 +137,7 @@ def test_validate_new_org_with_quotas_and_update_name(admin_auth_headers):
137137

138138
def test_validate_new_org_is_activated(admin_auth_headers):
139139
r = requests.get(
140-
f"{API_PREFIX}/orgs/{new_subs_oid}/subscriptions/is-activated/123",
140+
f"{API_PREFIX}/subscriptions/is-activated/123",
141141
heaqders=admin_auth_headers,
142142
)
143143
assert r.status_code == 200

0 commit comments

Comments
 (0)