From 82ae07d741bebefe4f1df95affa87285fbb8dfda Mon Sep 17 00:00:00 2001 From: Todd Menier Date: Wed, 20 Jun 2018 18:34:48 -0500 Subject: [PATCH] test hack for #179 no longer necessary (fixed on httpbin) --- Test/Flurl.Test/Http/RealHttpTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/Flurl.Test/Http/RealHttpTests.cs b/Test/Flurl.Test/Http/RealHttpTests.cs index 16958af5..7e12efa8 100644 --- a/Test/Flurl.Test/Http/RealHttpTests.cs +++ b/Test/Flurl.Test/Http/RealHttpTests.cs @@ -186,8 +186,8 @@ public async Task can_post_multipart() { .AddFile("File1", path1) .AddFile("File2", stream, "foo.txt"); - // hack to deal with #179, remove when this is fixed: https://github.com/kennethreitz/httpbin/issues/340 - content.Headers.ContentLength = 735; + // hack to deal with #179. appears to be fixed on httpbin now. + // content.Headers.ContentLength = 735; }) //.ReceiveString(); .ReceiveJson();