Skip to content

Commit a9b29fb

Browse files
author
Joel Lee
committed
fix: remove deadweight test
1 parent 1883149 commit a9b29fb

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

Diff for: tests/test_client.py

-13
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,3 @@ def test_client_insert(supabase: Client) -> None:
8383
assert current_length == previous_length + 1
8484
# Check returned result for insert was valid.
8585
assert result.get("status_code", 400) == 201
86-
87-
88-
def test_client_bucket(supabase: Client) -> None:
89-
90-
"""Ensure that the storage bucket operations work"""
91-
TEST_BUCKET_NAME = "atestbucket"
92-
storage = supabase.storage()
93-
storage_bucket = storage.StorageBucketAPI()
94-
storage_bucket.create_bucket(TEST_BUCKET_NAME)
95-
storage_bucket.list_buckets()
96-
storage_bucket.get_bucket(TEST_BUCKET_NAME)
97-
storage_bucket.empty_bucket(TEST_BUCKET_NAME)
98-
storage_bucket.delete_bucket(TEST_BUCKET_NAME)

0 commit comments

Comments
 (0)