Skip to content

Commit b1089c7

Browse files
committed
Fix remove unnecessary types from test cases
1 parent fe0e4c7 commit b1089c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/tests/Squidex.Domain.Apps.Core.Tests/Operations/Scripting/JintScriptEngineHelperTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,14 +903,14 @@ public async Task Should_make_request_async()
903903

904904
[Theory]
905905
[InlineData("text/plain")]
906-
[InlineData("text/html")]
906+
[InlineData("text/xml")]
907907
[InlineData("application/xml")]
908908
public async Task Should_make_request_text_body_async(string input)
909909
{
910910
var (body, contentLength) = input switch
911911
{
912912
"text/plain" => ("test", "test".Length),
913-
"text/html" => ("<html></html>", "<html></html>".Length),
913+
"text/xml" => ("<html></html>", "<html></html>".Length),
914914
"application/xml" => ("<person gender=\"female\"></person>", "<person gender=\"female\"></person>".Length),
915915
_ => (string.Empty, 0),
916916
};

0 commit comments

Comments
 (0)