From 3656dd74630cada2f9e7a54add1b64f545098ca2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Oct 2025 00:04:54 +0000 Subject: [PATCH] Fix test naming convention and remove unnecessary comments Co-authored-by: StevanFreeborn <65925598+StevanFreeborn@users.noreply.github.com> --- .../Unit/Commands/DefaultCommandTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/StreamShorts.Console.Tests/Unit/Commands/DefaultCommandTests.cs b/tests/StreamShorts.Console.Tests/Unit/Commands/DefaultCommandTests.cs index a1d4071..8cd7a03 100644 --- a/tests/StreamShorts.Console.Tests/Unit/Commands/DefaultCommandTests.cs +++ b/tests/StreamShorts.Console.Tests/Unit/Commands/DefaultCommandTests.cs @@ -10,12 +10,10 @@ public class DefaultCommandTests [InlineData("file_with_underscores.mp4", "file_with_underscores.mp4")] [InlineData("file with spaces.mp4", "file with spaces.mp4")] [InlineData("[brackets].mp4", "[[brackets]].mp4")] - public void EscapeMarkup_ShouldProperlyEscapeSquareBrackets(string input, string expected) + public void EscapeMarkup_WhenCalledWithVariousInputs_ItShouldProperlyEscapeSquareBrackets(string input, string expected) { - // Act var result = input.EscapeMarkup(); - // Assert result.Should().Be(expected); } }