From 590d9f65f61b627c6e46afdebcf4656d4723ad82 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Wed, 6 Jun 2018 01:59:42 -0700 Subject: [PATCH] Corrected a typo --- .../IntegrationTests/MSBuildProcessManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs index b396ea8da5..7feed83cec 100644 --- a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs +++ b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs @@ -32,7 +32,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests if (string.IsNullOrEmpty(BuildVariables.MSBuildPath)) { throw new ArgumentException("Unable to locate MSBuild.exe to run desktop tests. " + - "MSBuild.exe is located using state created as part of running build[cmd|sh] at the root of the repository. Run build /t:Prepeare to set this up if this hasn't been done."); + "MSBuild.exe is located using state created as part of running build[cmd|sh] at the root of the repository. Run build /t:Prepare to set this up if this hasn't been done."); } processStartInfo.FileName = BuildVariables.MSBuildPath;