diff --git a/test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs b/test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs index 13cf01695..6cbb7cae8 100644 --- a/test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs +++ b/test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs @@ -110,9 +110,17 @@ A command is running to initially populate your local package cache, to improve _nugetCacheFolder .Should() .HaveDirectories(expectedDirectories); + + _nugetCacheFolder + .GetDirectory("system.runtime") + .Should().HaveDirectories(new string[] { "4.1.0", "4.3.0" }); + + _nugetCacheFolder + .GetDirectory("microsoft.aspnetcore.mvc") + .Should().HaveDirectories(new string[] { "1.0.1", "1.1.0" }); } - private string GetDotnetVersion() + private string GetDotnetVersion() { return new DotnetCommand().ExecuteWithCapturedOutput("--version").StdOut .TrimEnd(Environment.NewLine.ToCharArray());