Skip to content

Commit

Permalink
Update CustomRequestDataTests.cs
Browse files Browse the repository at this point in the history
Unit Tests: change port (82) to a registered port (1337), that can be used by ordinary users.
  • Loading branch information
angelcolmenares committed May 6, 2014
1 parent bf03065 commit 6f5a22c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -41,7 +41,7 @@ public void OnTestFixtureTearDown()
[Test]
public void Can_parse_custom_form_data()
{
var webReq = (HttpWebRequest)WebRequest.Create("http://localhost:82/customformdata?format=json");
var webReq = (HttpWebRequest)WebRequest.Create("http://localhost:1337/customformdata?format=json");
webReq.Method = HttpMethods.Post;
webReq.ContentType = MimeTypes.FormUrlEncoded;

Expand Down

0 comments on commit 6f5a22c

Please sign in to comment.