Skip to content

Commit

Permalink
Code quality fix IDE0300
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Dec 11, 2024
1 parent 6c1a5b2 commit 6ad5126
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public async Task Synchronise_EmptyFolder_LogsToFile()

// Assert
var fileLog = await File.ReadAllTextAsync(_logPath);
var fileLogLines = fileLog.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
var fileLogLines = fileLog.Split([Environment.NewLine], StringSplitOptions.None);
var expectedWorkingDirectoryLogText = $"Synchronising *.md files in {_buildOutputDirectory}".TrimEnd('\\', '/');
_testOutputHelper.WriteLine($"expectedWorkingDirectoryLogText = {expectedWorkingDirectoryLogText}");
fileLogLines.Should().Contain(line => line.EndsWith(expectedWorkingDirectoryLogText));
Expand Down

0 comments on commit 6ad5126

Please sign in to comment.