forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
guess we don't need the xfails anymore
- Loading branch information
Showing
1 changed file
with
0 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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") | ||
|
@@ -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") | ||
|