Skip to content

Commit 4e3caf4

Browse files
committed
Fix failing tests by using the right property name
1 parent 99bf50e commit 4e3caf4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/PSGit.formats.ps1xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
</ScriptBlock>
6767
</TableColumnItem>
6868
<TableColumnItem>
69-
<PropertyName>Ahead</PropertyName>
69+
<PropertyName>AheadBy</PropertyName>
7070
</TableColumnItem>
7171
<TableColumnItem>
72-
<PropertyName>Behind</PropertyName>
72+
<PropertyName>BehindBy</PropertyName>
7373
</TableColumnItem>
7474
</TableColumnItems>
7575
</TableRowEntry>

src/PSGit.types.ps1xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<ReferencedMemberName>Name</ReferencedMemberName>
99
</AliasProperty>
1010
<ScriptProperty>
11-
<Name>Ahead</Name>
11+
<Name>AheadBy</Name>
1212
<GetScriptBlock>
1313
$this.TrackingDetails.AheadBy
1414
</GetScriptBlock>
1515
</ScriptProperty>
1616
<ScriptProperty>
17-
<Name>Behind</Name>
17+
<Name>BehindBy</Name>
1818
<GetScriptBlock>
1919
$this.TrackingDetails.BehindBy
2020
</GetScriptBlock>

0 commit comments

Comments
 (0)