8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cab071 commit 889e0baCopy full SHA for 889e0ba
Tests/Status.Steps.ps1
@@ -399,7 +399,7 @@ Then "the status of git should be" {
399
400
for($f =0; $f -lt $Result.Count; $f++) {
401
# Staged | Change | Path
402
- $R = $Result[$f] | Select-Object Staged, Changed, @{N="Path";E={$_.Path.Trim("\/")}}
+ $R = $Result[$f] | Select-Object *, @{Name="Path"; Expr= {$_.Path.TrimEnd("\/")}} -ExcludeProperty Path
403
$T = $Table[$f]
404
if($T.OldPath) {
405
$R | Must OldPath -eq $T.OldPath
0 commit comments