Browse Source

Fix build.

pull/32/merge
Daniel Grunwald 13 years ago
parent
commit
b29ebf9b99
  1. 2
      src/AddIns/Misc/PackageManagement/Test/Src/EnvDTE/DTETests.cs

2
src/AddIns/Misc/PackageManagement/Test/Src/EnvDTE/DTETests.cs

@ -34,7 +34,7 @@ namespace PackageManagement.Tests.EnvDTE @@ -34,7 +34,7 @@ namespace PackageManagement.Tests.EnvDTE
void OpenSolution(string fileName)
{
fakeSolution = MockRepository.GenerateStub<ISolution>();
var sections = new ImmutableModelCollection<SolutionSection>(new SolutionSection[0]);
var sections = new SimpleModelCollection<SolutionSection>(new SolutionSection[0]);
fakeSolution.Stub(s => s.GlobalSections).Return(sections);
fakeProjectService.OpenSolution = fakeSolution;
SetOpenSolutionFileName(fileName);

Loading…
Cancel
Save