Skip to content

Commit

Permalink
guess we don't need the xfails anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
kalefranz committed Jan 7, 2017
1 parent c5d3905 commit aa44e99
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/common/test_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
log = getLogger(__name__)


@pytest.mark.xfail(sys.version_info[:3] == (3, 4, 2),
reason="python 3.4.2 bug; verified fixed in python 3.4.5",
strict=True)
def test_maybe_add_auth():
url = "http://www.conda.io:80/some/path.html?query1=1&query2=2"
new_url = maybe_add_auth(url, "usr:ps")
Expand All @@ -30,9 +27,6 @@ def test_maybe_add_auth():
assert new_url == "http://usr:[email protected]:80/some/path.html?query1=1&query2=2"


@pytest.mark.xfail(sys.version_info[:3] == (3, 4, 2),
reason="python 3.4.2 bug; verified fixed in python 3.4.5",
strict=True)
def test_add_username_and_pass_to_url():
url = "http://www.conda.io:80/some/path.html?query1=1&query2=2"
new_url = add_username_and_password(url, "usr", "some*/weird pass")
Expand Down

0 comments on commit aa44e99

Please sign in to comment.