Skip to content

Commit 4f60539

Browse files
fix: correct query string in delete_playwright_organizations function
1 parent 19e0b34 commit 4f60539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fetch-from-clerk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ def delete_playwright_organizations():
3131
organizations = fetch_organizations("playwrightTest")
3232

3333
if len(organizations) == 0:
34-
print("No organizations found with the query playwritesttest1234")
34+
print("No organizations found with the query playwrightTest")
3535
return
3636

3737
for organization in organizations:
3838
delete_organization(organization['id'])
3939

40-
print(f"Deleted {len(organizations)} organizations with the query 'playwright'")
40+
print(f"Deleted {len(organizations)} organizations with the query 'playwrightTest'")
4141
except Exception as error:
4242
print(f"Error deleting organizations: {error}")
4343

0 commit comments

Comments
 (0)