Skip to content

Commit cc80116

Browse files
Fix the failing integ test.
1 parent dfed007 commit cc80116

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/ozone/shell/TestOzoneTenantShell.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,14 +529,14 @@ public void testOzoneTenantBasicOperations() throws IOException {
529529
// Attempt to assign the user to the tenant again
530530
executeHA(tenantShell, new String[] {
531531
"user", "assign", "bob", "--tenant=research",
532-
"--accessId=research$bob"});
532+
"--access-id=research$bob"});
533533
checkOutput(out, "", false);
534534
checkOutput(err, "accessId 'research$bob' already exists!\n", true);
535535

536536
// Attempt to assign the user to the tenant with a custom accessId
537537
executeHA(tenantShell, new String[] {
538538
"user", "assign", "bob", "--tenant=research",
539-
"--accessId=research$bob42"});
539+
"--access-id=research$bob42"});
540540
checkOutput(out, "", false);
541541
// HDDS-6366: Disallow specifying custom accessId.
542542
checkOutput(err, "Invalid accessId 'research$bob42'. "

0 commit comments

Comments
 (0)