replace '\' in filepaths with '/'
This commit is contained in:
@@ -6,9 +6,9 @@ public class Day09Test
|
||||
{
|
||||
private IPuzzleSolver<long> _sut;
|
||||
private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
|
||||
private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day09.txt";
|
||||
private readonly string Test2InputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day09_2.txt";
|
||||
private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day09.txt";
|
||||
private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day09.txt";
|
||||
private readonly string Test2InputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day09_2.txt";
|
||||
private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day09.txt";
|
||||
|
||||
public Day09Test()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user