Skip to content

Commit 5dfa816

Browse files
committed
remove old Logger implementation, implement FileAppender
1 parent 6dd5e33 commit 5dfa816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitVersionExe.Tests/ExecCmdLineArgumentTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void LogPathContainsForwardSlash()
5959
fixture.MakeATaggedCommit("1.2.3");
6060
fixture.MakeACommit();
6161

62-
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, arguments: @" /l ""/some/path""", logToFile: false);
62+
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, arguments: @" /l ""/tmp/path""", logToFile: false);
6363

6464
result.ExitCode.ShouldBe(0);
6565
result.Output.ShouldContain(@"""MajorMinorPatch"":""1.2.4""");
@@ -77,7 +77,7 @@ public void CheckBuildServerVerbosityConsole(string verbosityArg, string expecte
7777
fixture.MakeATaggedCommit("1.2.3");
7878
fixture.MakeACommit();
7979

80-
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, arguments: $@" {verbosityArg} -output buildserver /l ""/some/path""", logToFile: false);
80+
var result = GitVersionHelper.ExecuteIn(fixture.RepositoryPath, arguments: $@" {verbosityArg} -output buildserver /l ""/tmp/path""", logToFile: false);
8181

8282
result.ExitCode.ShouldBe(0);
8383
result.Output.ShouldContain(expectedOutput);

0 commit comments

Comments
 (0)