Skip to content

Commit

Permalink
[PS - LiveTest] Fix storage live test failure (#20815)
Browse files Browse the repository at this point in the history
* add scenario test vm

* add scenario test Storage

* update scenario test Storage

* update scenario test vm

* update scenario test Storage

* update scenario test vm

* update scenario test vm

* update scenario test vm

* update scenario test vm

* update scenario test storage

* update scenario test vm, update the variable

* Shortened the random resource name to 15 in total

* update scenario test vm

* update scenario test vm

* update scenario test vm

* update scenario test vm

* update location Storage live test

* update location Storage live test

* delete scenario test Storage.Test

* msg

* update location Storage live test

* update location Storage live test

* update location Storage live test

* update scenario test Storage.Test

---------

Co-authored-by: Vincent Dai <[email protected]>
  • Loading branch information
Alex-wdy and vidai-msft authored Feb 1, 2023
1 parent d0daaaa commit 103ae87
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Invoke-LiveTestScenario -Name "Creates a Storage account" -Description "Test cre
param ($rg)

$rgName = $rg.ResourceGroupName
$name = "alex12391d87"
# $name = "alex12391d87"
$name = New-LiveTestResourceName
$location = "westus"
$actual = New-AzStorageAccount -ResourceGroupName $rgName -Name $name -Location $location -SkuName Standard_GRS

Expand All @@ -22,7 +23,8 @@ Invoke-LiveTestScenario -Name "Removes a Storage account" -Description "Test rem
param ($rg)

$rgName = $rg.ResourceGroupName
$name = "alex12391d87"
# $name = "alex12391d87"
$name = New-LiveTestResourceName
$location = "westus"

New-AzStorageAccount -ResourceGroupName $rgname -Name $name -Location $location -SkuName Standard_GRS
Expand Down

0 comments on commit 103ae87

Please sign in to comment.