Skip to content

Commit

Permalink
Fix case-sensitive resource path
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//dev/main.net/": change = 112164]
  • Loading branch information
vasac committed Oct 28, 2024
1 parent 138d686 commit 736a7cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Coherence.Tests/IO/Pof/Coh25103Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Coh25103Tests
[SetUp]
public void Setup()
{
m_pofContext = new ConfigurablePofContext("config/include-pof-config.xml");
m_pofContext = new ConfigurablePofContext("Config/include-pof-config.xml");
}

[Test]
Expand Down
4 changes: 2 additions & 2 deletions tests/Coherence.Tests/Util/SerializationHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class SerializationHelperTests
[Test]
public void TestToAndFromBinary()
{
ISerializer serializer = new ConfigurablePofContext("config/include-pof-config.xml");
ISerializer serializer = new ConfigurablePofContext("Config/include-pof-config.xml");
string original = "hello";
Binary bin = SerializationHelper.ToBinary(original, serializer);
string copy = (string) SerializationHelper.FromBinary(bin, serializer);
Expand All @@ -41,7 +41,7 @@ public void TestToAndFromBinary()
[Test]
public void TestDecoration()
{
ISerializer serializer = new ConfigurablePofContext("config/include-pof-config.xml");
ISerializer serializer = new ConfigurablePofContext("Config/include-pof-config.xml");
string original = "hello";
Binary bin = SerializationHelper.ToBinary(original, serializer);

Expand Down

0 comments on commit 736a7cd

Please sign in to comment.