Skip to content

Commit 4bd82ac

Browse files
benyuzCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent de2844e commit 4bd82ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/HttpUnitTests/HttpListenerRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ public void Add_Authorization_NoSpaceMultipleChars_ShouldNotThrow()
2323
public void Add_Authorization_ValidBasicToken_ShouldSucceed()
2424
{
2525
var headers = new WebHeaderCollection();
26-
headers.Add("Authorization: Basic a111111");
26+
headers.Add("Authorization: Basic dXNlcjpwYXNz");
2727
string value = headers["Authorization"];
28-
Assert.AreEqual("Basic a111111", value);
28+
Assert.AreEqual("Basic dXNlcjpwYXNz", value);
2929
}
3030
}
3131
}

0 commit comments

Comments
 (0)