Skip to content

Commit

Permalink
Fix music xml test files name case
Browse files Browse the repository at this point in the history
  • Loading branch information
ChainsManipulator committed Nov 30, 2024
1 parent 821535c commit c85594e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Libiada.Core.Tests/Libiada.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
</ItemGroup>

<ItemGroup>
<None Update="Music\XmlTestFiles\LibiadaMusicexample7Liga.xml">
<None Update="Music\XmlTestFiles\LibiadaMusicExample7Liga.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Music\XmlTestFiles\polytest.xml">
<None Update="Music\XmlTestFiles\PolyTest.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Music\XmlTestFiles\repeatertest.xml">
<None Update="Music\XmlTestFiles\RepeaterTest.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Libiada.Core.Tests/Music/MusicXml/MusicXmlParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void XmlParserTest()
[Test]
public void PolyXmlParserTest()
{
string xmlFilePath = Path.Join(TestContext.CurrentContext.TestDirectory, "Music", "XmlTestFiles", "polytest.xml");
string xmlFilePath = Path.Join(TestContext.CurrentContext.TestDirectory, "Music", "XmlTestFiles", "PolyTest.xml");
MusicXmlReader xmlReader = new(xmlFilePath);
MusicXmlParser parser = new();
parser.Execute(xmlReader.MusicXmlDocument);
Expand Down Expand Up @@ -156,7 +156,7 @@ public void PolyXmlParserTest()
[Test]
public void RepeaterTest()
{
string xmlFilePath = Path.Join(TestContext.CurrentContext.TestDirectory, "Music", "XmlTestFiles", "repeatertest.xml");
string xmlFilePath = Path.Join(TestContext.CurrentContext.TestDirectory, "Music", "XmlTestFiles", "RepeaterTest.xml");
MusicXmlReader xmlReader = new(xmlFilePath);
MusicXmlParser parser = new();
parser.Execute(xmlReader.MusicXmlDocument);
Expand Down

0 comments on commit c85594e

Please sign in to comment.