Skip to content

Commit 8a621c7

Browse files
committed
update obj quota tests
1 parent bd0df7f commit 8a621c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/obj/test_obj_quota.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def get_quota_id():
99
response = (
10-
exec_test_command(CLI_CMD + ["object-storage-quotas", "--json"])
10+
exec_test_command(CLI_CMD + ["get-object-storage-quotas", "--json"])
1111
.stdout.decode()
1212
.rstrip()
1313
)
@@ -22,7 +22,7 @@ def get_quota_id():
2222

2323
def test_obj_quotas_list():
2424
response = (
25-
exec_test_command(CLI_CMD + ["object-storage-quotas", "--json"])
25+
exec_test_command(CLI_CMD + ["get-object-storage-quotas", "--json"])
2626
.stdout.decode()
2727
.rstrip()
2828
)
@@ -49,7 +49,7 @@ def test_obj_quota_view():
4949

5050
response = (
5151
exec_test_command(
52-
CLI_CMD + ["object-storage-quota-view", quota_id, "--json"]
52+
CLI_CMD + ["get-object-storage-quota", quota_id, "--json"]
5353
)
5454
.stdout.decode()
5555
.rstrip()
@@ -81,7 +81,7 @@ def test_obj_quota_usage_view():
8181

8282
response = (
8383
exec_test_command(
84-
CLI_CMD + ["object-storage-quota-usage-view", quota_id, "--json"]
84+
CLI_CMD + ["get-object-storage-quota-usage", quota_id, "--json"]
8585
)
8686
.stdout.decode()
8787
.rstrip()

0 commit comments

Comments
 (0)