Skip to content

Commit 28168b7

Browse files
Fixed the dotnet format issue in the pipeline
1 parent 5e9d6fa commit 28168b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/OctoshiftCLI.Tests/gei/Commands/MigrateRepo/MigrateRepoCommandArgsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public void It_Throws_Error_When_Url_Provided_In_Both_Source_And_Target_Org()
351351
FluentActions.Invoking(() => args.Validate(_mockOctoLogger.Object))
352352
.Should()
353353
.ThrowExactly<OctoshiftCliException>()
354-
.WithMessage("*GithubSourceOrg should be an org name, not a URL*");
354+
.WithMessage("*GithubSourceOrg should be an org name, not a URL*");
355355
}
356356
[Fact]
357357
public void It_Throws_Error_When_Url_Provided_In_SourceRepo()
@@ -377,7 +377,7 @@ public void It_Throws_Error_When_Url_Provided_In_TargetRepo()
377377
GithubSourceOrg = SOURCE_ORG,
378378
GithubTargetOrg = TARGET_ORG,
379379
TargetRepo = "https://github.com/bar",
380-
};
380+
};
381381
FluentActions.Invoking(() => args.Validate(_mockOctoLogger.Object))
382382
.Should()
383383
.ThrowExactly<OctoshiftCliException>()

0 commit comments

Comments
 (0)