From d5016640529466ca25bd31dfe71aa6f6f6801361 Mon Sep 17 00:00:00 2001 From: Jake Ginnivan Date: Sun, 27 Oct 2013 13:07:38 +0000 Subject: [PATCH] Fixing tests --- .../Helpers/GitHubFlowVersionHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHubFlowVersion.AcceptanceTests/Helpers/GitHubFlowVersionHelper.cs b/src/GitHubFlowVersion.AcceptanceTests/Helpers/GitHubFlowVersionHelper.cs index f6ae65a..b11969c 100644 --- a/src/GitHubFlowVersion.AcceptanceTests/Helpers/GitHubFlowVersionHelper.cs +++ b/src/GitHubFlowVersion.AcceptanceTests/Helpers/GitHubFlowVersionHelper.cs @@ -43,7 +43,7 @@ public static void ShouldContainCorrectBuildVersion(this string output, string v public static void ShouldContainFourPartVersionVariable(this string output, string version, int numCommitsToMake) { - Assert.Contains(string.Format("##teamcity[setParameter name='GitHubFlowVersion.FourPartVersion' value='{0}.{1}']", version, numCommitsToMake), output); + Assert.Contains(string.Format("##teamcity[setParameter name='system.GitHubFlowVersion.FourPartVersion' value='{0}.{1}']", version, numCommitsToMake), output); } public static void AddNextVersionTxtFile(this IRepository repository, string version)