From 8b079a8428a3a36234918a53f7ad61e23e496341 Mon Sep 17 00:00:00 2001 From: PHAN Trung Thanh Date: Thu, 13 Jul 2023 11:36:19 +0200 Subject: [PATCH] fix TestAccountsSubaccountFacade_Update/constructs_the_CLI_params_correctly --- internal/btpcli/facade_accounts_subaccount_test.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/internal/btpcli/facade_accounts_subaccount_test.go b/internal/btpcli/facade_accounts_subaccount_test.go index d70b1ce6..55fa2667 100644 --- a/internal/btpcli/facade_accounts_subaccount_test.go +++ b/internal/btpcli/facade_accounts_subaccount_test.go @@ -129,11 +129,12 @@ func TestAccountsSubaccountFacade_Update(t *testing.T) { srvCalled = true assertCall(t, r, command, ActionUpdate, map[string]string{ - "subaccount": subaccountId, - "displayName": displayName, - "description": description, - "betaEnabled": "false", - "globalAccount": globalAccount, + "subaccount": subaccountId, + "displayName": displayName, + "description": description, + "betaEnabled": "false", + "globalAccount": globalAccount, + "usedForProduction": "false", }) }))