We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e0b34 commit 4f60539Copy full SHA for 4f60539
tests/fetch-from-clerk.py
@@ -31,13 +31,13 @@ def delete_playwright_organizations():
31
organizations = fetch_organizations("playwrightTest")
32
33
if len(organizations) == 0:
34
- print("No organizations found with the query playwritesttest1234")
+ print("No organizations found with the query playwrightTest")
35
return
36
37
for organization in organizations:
38
delete_organization(organization['id'])
39
40
- print(f"Deleted {len(organizations)} organizations with the query 'playwright'")
+ print(f"Deleted {len(organizations)} organizations with the query 'playwrightTest'")
41
except Exception as error:
42
print(f"Error deleting organizations: {error}")
43
0 commit comments