Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit ca49597

Browse files
committed
Fix test on *nix
1 parent 51a1cab commit ca49597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.AspNetCore.Http.Tests/Features/FormFeatureTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public async Task ReadFormAsync_MultipartWithEncodedFilename_ReturnsParsedFormCo
242242

243243
var file = formCollection.Files["myfile1"];
244244
Assert.Equal("myfile1", file.Name);
245-
Assert.Equal("témp.html", file.FileName);
245+
Assert.Equal("t\u00e9mp.html", file.FileName);
246246
Assert.Equal("text/html", file.ContentType);
247247
Assert.Equal(@"form-data; name=""myfile1""; filename=""temp.html""; filename*=utf-8''t%c3%a9mp.html", file.ContentDisposition);
248248
var body = file.OpenReadStream();

0 commit comments

Comments
 (0)