Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rouke-broersma committed Nov 22, 2024
1 parent 5a95da0 commit 51107ff
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,8 @@ public void ShouldDiscoverUpstreamProject()
var libraryProject = FileSystem.Path.Combine(ProjectPath, "libraryproject.csproj");

// The analyzer finds two projects
var libraryAnalyzer = SourceProjectAnalyzerMock(libraryProject,
[FileSystem.Path.Combine(ProjectPath, "mylib.cs")]).Object;
var projectAnalyzer = SourceProjectAnalyzerMock(csprojPathName, [FileSystem.Path.Combine(ProjectPath, "someFile.cs")]
, [libraryProject]).Object;
var libraryAnalyzer = SourceProjectAnalyzerMock(libraryProject, [FileSystem.Path.Combine(ProjectPath, "mylib.cs")]).Object;
var projectAnalyzer = SourceProjectAnalyzerMock(csprojPathName, [FileSystem.Path.Combine(ProjectPath, "someFile.cs")], [libraryProject]).Object;
var analyzerResults = new Dictionary<string, IProjectAnalyzer>
{
{ "MyProject", projectAnalyzer },
Expand Down

0 comments on commit 51107ff

Please sign in to comment.