Skip to content

Commit

Permalink
Move the .editorconfig down into the source and revert test changes
Browse files Browse the repository at this point in the history
It is unnecessary to have in the tests.
  • Loading branch information
Rob-Hague committed Dec 21, 2023
1 parent 00934e5 commit db18330
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion UnitTests/DataDictionaryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ public void ParseThroughComments()
XmlNode MakeNode(string xmlString)
{
XmlDocument doc = new XmlDocument();
if (xmlString.StartsWith('<'))
if (xmlString.StartsWith("<"))
{
doc.LoadXml(xmlString);
return doc.DocumentElement;
Expand Down
2 changes: 1 addition & 1 deletion UnitTests/ThreadedSocketReactorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void TestStartOnBusyPort()
Assert.IsNotNull(stdOutResult);

Assert.AreEqual(typeof(SocketException), exceptionResult.GetType());
Assert.IsTrue(stdOutResult.StartsWith("Error starting listener: ", StringComparison.InvariantCulture));
Assert.IsTrue(stdOutResult.StartsWith("Error starting listener: "));
}

[TearDown]
Expand Down

0 comments on commit db18330

Please sign in to comment.