Skip to content

Commit

Permalink
Remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaavila committed Nov 12, 2024
1 parent a2ec6ad commit 591792a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Parser\LUParserTestsPVA.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageReference Include="coverlet.collector" Version="6.0.2" />
</ItemGroup>

<ItemGroup>
<Folder Include="Parser\" />
</ItemGroup>
<ItemGroup>
<None Update="Fixtures\AllComments.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ public void ParseLuContentAutomated(string fileName)
LuResource expected = JsonConvert.DeserializeObject<LuResource>(File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "Fixtures", fileName + ".json")).Replace("\r", string.Empty));
var serializedExpected = JsonConvert.SerializeObject(expected);

var serResult = SanitizeString(serializedResult);
var serExpected = SanitizeString(serializedExpected);
var serResult = SanitizeString(serializedResult);

Assert.Equal(serExpected, serResult);
}
Expand Down

0 comments on commit 591792a

Please sign in to comment.