Skip to content

Commit

Permalink
CodeQL and Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RikuVirtanen committed Feb 7, 2024
1 parent b79717c commit de40d2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,6 @@ public async Task ExecuteQueryToFile_WithBinaryDBType()

var output = File.ReadAllText(_destination);

Assert.AreEqual(BitConverter.ToString(File.ReadAllBytes(Path.Combine(Path.GetDirectoryName(_destination), "Test_text.txt"))), output.TrimEnd(Environment.NewLine.ToCharArray()));
Assert.AreEqual(BitConverter.ToString(File.ReadAllBytes(Path.Combine(Path.GetDirectoryName(_destination), "Test_text.txt"))), output.TrimEnd(new char[] { '\r', '\n' }));
}
}

0 comments on commit de40d2e

Please sign in to comment.