Skip to content

Commit 8208576

Browse files
Fixed commenting in test
1 parent ddbf29a commit 8208576

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseActivationTests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function Test-DatabasePauseResume
4242
Assert-AreEqual $dwdb2.CollationName $collationName
4343
Assert-AreEqual $dwdb2.Status "Paused"
4444

45-
# Resume the database. Make sure the database specs remain the same and its Status is Online. This will also test piping.
45+
# Resume the database. Make sure the database specs remain the same and its Status is Online.
4646
$dwdb3 = Resume-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $dwdb.DatabaseName
4747
Assert-AreEqual $dwdb3.DatabaseName $databaseName
4848
Assert-AreEqual $dwdb3.MaxSizeBytes $maxSizeBytes
@@ -89,7 +89,7 @@ function Test-DatabasePauseResumePiped
8989
Assert-AreEqual $dwdb2.CollationName $collationName
9090
Assert-AreEqual $dwdb2.Status "Paused"
9191

92-
# Resume the database. Make sure the database specs remain the same and its Status is Online. This will also test piping.
92+
# Resume the database. Make sure the database specs remain the same and its Status is Online.
9393
$dwdb3 = $dwdb2 | Resume-AzureSqlDatabase
9494
Assert-AreEqual $dwdb3.DatabaseName $databaseName
9595
Assert-AreEqual $dwdb3.MaxSizeBytes $maxSizeBytes

0 commit comments

Comments
 (0)