Skip to content

Commit f277ae7

Browse files
committed
Fixed failing test
1 parent ab9cc0d commit f277ae7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

GitVersionTask.Tests/GetVersionTaskTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public void OutputsShouldMatchVariableProvider()
1818

1919
var variablesProperties = typeof(VersionVariables)
2020
.GetProperties()
21-
.Select(p => p.Name);
21+
.Select(p => p.Name)
22+
.Except(new[] { "AvailableVariables", "Item" });
2223

2324
taskProperties.ShouldBe(variablesProperties, ignoreOrder: true);
2425
}

0 commit comments

Comments
 (0)