Skip to content

Commit

Permalink
Correct spelling referRing
Browse files Browse the repository at this point in the history
Signed-off-by: MTsfoni <[email protected]>
  • Loading branch information
mtsfoni committed Feb 11, 2024
1 parent 98669c9 commit eb6b3cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CycloneDX.Tests/CycloneDX.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
<None Update="FunctionalTests\Issue830-rsMultipleFrameworks\project2csproj.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="FunctionalTests\Issue847-FineGrainedDependencies\ReferingFineGrainedDependency.csproj.project.assets.json">
<None Update="FunctionalTests\Issue847-FineGrainedDependencies\ReferringFineGrainedDependency.csproj.project.assets.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="FunctionalTests\Issue847-FineGrainedDependencies\ReferingFineGrainedDependency.csproj.xml">
<None Update="FunctionalTests\Issue847-FineGrainedDependencies\ReferringFineGrainedDependency.csproj.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="FunctionalTests\Issue847-FineGrainedDependencies\FineGrainedDependency.csproj.project.assets.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Issue847FineGrainedDevDependencies
{
readonly string testFileFolder = "Issue847-FineGrainedDependencies";
readonly string fineGrainedProject = "c:/project2/project2.csproj";
readonly string referingFineGrainedProjectProject = "c:/project1/project1.csproj";
readonly string referringFineGrainedProjectProject = "c:/project1/project1.csproj";

private MockFileSystem getMockFS()
{
Expand All @@ -25,15 +25,15 @@ private MockFileSystem getMockFS()
{
MockUnixSupport.Path("c:/project1/obj/project.assets.json"),
new MockFileData(
File.ReadAllText(Path.Combine("FunctionalTests", testFileFolder, "ReferingFineGrainedDependency.csproj.project.assets.json")))
File.ReadAllText(Path.Combine("FunctionalTests", testFileFolder, "ReferringFineGrainedDependency.csproj.project.assets.json")))
},{
MockUnixSupport.Path("c:/project2/obj/project.assets.json"),
new MockFileData(
File.ReadAllText(Path.Combine("FunctionalTests", testFileFolder, "FineGrainedDependency.csproj.project.assets.json")))
},{
MockUnixSupport.Path(referingFineGrainedProjectProject),
MockUnixSupport.Path(referringFineGrainedProjectProject),
new MockFileData(
File.ReadAllText(Path.Combine("FunctionalTests", testFileFolder, "ReferingFineGrainedDependency.csproj.xml")))
File.ReadAllText(Path.Combine("FunctionalTests", testFileFolder, "ReferringFineGrainedDependency.csproj.xml")))
},{
MockUnixSupport.Path(fineGrainedProject),
new MockFileData(
Expand Down Expand Up @@ -82,7 +82,7 @@ public async Task TransitiveDevDependenciesAreExcluded()
var options = new RunOptions
{
excludeDev = true,
SolutionOrProjectFile = MockUnixSupport.Path(referingFineGrainedProjectProject)
SolutionOrProjectFile = MockUnixSupport.Path(referringFineGrainedProjectProject)
};
var bom = await FunctionalTestHelper.Test(options, getMockFS());

Expand Down

0 comments on commit eb6b3cf

Please sign in to comment.