Fixing a first run test that checks the version of the mvc package. It checked for 1.0.3 and 1.1.2 and it needs to check for 1.0.4 and 1.1.3 now.

This commit is contained in:
Livar Cunha 2017-04-28 22:30:21 -07:00
parent a747ead113
commit f983b804f8

View file

@ -118,7 +118,7 @@ A command is running to initially populate your local package cache, to improve
_nugetCacheFolder
.GetDirectory("microsoft.aspnetcore.mvc")
.Should().HaveDirectories(new string[] { "1.0.3", "1.1.2" });
.Should().HaveDirectories(new string[] { "1.0.4", "1.1.3" });
}
private string GetDotnetVersion()