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 8271863 commit 3b25539Copy full SHA for 3b25539
src/GitVersionTask.Tests/GetVersionTaskTests.cs
@@ -16,10 +16,7 @@ public void OutputsShouldMatchVariableProvider()
16
.Where(p => p.GetCustomAttributes(typeof(OutputAttribute), false).Any())
17
.Select(p => p.Name);
18
19
- var variablesProperties = typeof(VersionVariables)
20
- .GetProperties()
21
- .Select(p => p.Name)
22
- .Except(new[] { "AvailableVariables", "Item" });
+ var variablesProperties = VersionVariables.AvailableVariables;
23
24
taskProperties.ShouldBe(variablesProperties, ignoreOrder: true);
25
}
0 commit comments