Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
igoravl committed Aug 14, 2024
1 parent 6b0d597 commit f48ba38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PS/_Tests/WorkItem/AreasIterations/GetTfsArea.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Describe (($MyInvocation.MyCommand.Name -split '\.')[-3]) {
$nodes = Get-TfsArea -Project $tfsProject
$nodes | Should -BeOfType [Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode]
$nodes | Select-Object -ExpandProperty RelativePath | Sort-Object `
| Should -Be @('PUL', 'PUL-DB', 'PUL-DB\Migrations', 'PUL\App', 'PUL\Web', 'PUL\Web\Backend', 'PUL\Web\Frontend')
| Should -Be (@('PUL', 'PUL-DB', 'PUL-DB\Migrations', 'PUL\App', 'PUL\Web', 'PUL\Web\Backend', 'PUL\Web\Frontend') | Sort-Object)
}

It 'Should return a single level' {
Expand Down

0 comments on commit f48ba38

Please sign in to comment.