Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksmith15 committed Jul 17, 2023
1 parent 22937c2 commit cf5dcb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_conda_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
)
from conda_lock.models.channel import Channel
from conda_lock.models.lock_spec import VCSDependency, VersionedDependency
from conda_lock.pypi_solver import parse_pip_requirement, solve_pypi, _strip_auth
from conda_lock.pypi_solver import _strip_auth, parse_pip_requirement, solve_pypi
from conda_lock.src_parser import (
DEFAULT_PLATFORMS,
LockSpecification,
Expand Down Expand Up @@ -1648,7 +1648,7 @@ def test__strip_auth_from_line(line: str, stripped: str):
"https://username:password@[email protected]/path?query=string#fragment",
"https://example.com/path?query=string#fragment",
),
)
),
)
def test_strip_auth_from_url(url: str, stripped: str):
assert _strip_auth(url) == stripped
Expand Down

0 comments on commit cf5dcb4

Please sign in to comment.