public void ChangesPost() { var builder = new HttpUrlBuilder("http://host1:1337/path"); builder.WithPort(2112); Assert.Equal("http://host1:2112/path", builder.ToString()); }