Skip to content

Commit 66284da

Browse files
committed
Remove unnecessary Copilot comments
1 parent e1646a1 commit 66284da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/OctoshiftCLI.Tests/ado2gh/Commands/RewirePipeline/RewirePipelineCommandTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void Should_Have_Options()
3131
{
3232
Assert.NotNull(_command);
3333
Assert.Equal("rewire-pipeline", _command.Name);
34-
Assert.Equal(9, _command.Options.Count); // Updated from 8 to 9
34+
Assert.Equal(9, _command.Options.Count);
3535

3636
TestHelpers.VerifyCommandOption(_command.Options, "ado-org", true);
3737
TestHelpers.VerifyCommandOption(_command.Options, "ado-team-project", true);
@@ -41,7 +41,7 @@ public void Should_Have_Options()
4141
TestHelpers.VerifyCommandOption(_command.Options, "service-connection-id", true);
4242
TestHelpers.VerifyCommandOption(_command.Options, "ado-pat", false);
4343
TestHelpers.VerifyCommandOption(_command.Options, "verbose", false);
44-
TestHelpers.VerifyCommandOption(_command.Options, "target-api-url", false); // Add check for new option
44+
TestHelpers.VerifyCommandOption(_command.Options, "target-api-url", false);
4545
}
4646

4747
[Fact]

src/ado2gh/Commands/RewirePipeline/RewirePipelineCommandArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class RewirePipelineCommandArgs : CommandArgs
1212
public string ServiceConnectionId { get; set; }
1313
[Secret]
1414
public string AdoPat { get; set; }
15-
public string TargetApiUrl { get; set; } // Added for GHEC Data Residency support
15+
public string TargetApiUrl { get; set; }
1616
}
1717
}

0 commit comments

Comments
 (0)