Skip to content

Commit

Permalink
test: do not assert specific setuptools version
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga committed Aug 20, 2024
1 parent 63bb112 commit 6909826
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_update_lockfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ def test_init_and_create_lockfile(workdir, monkeypatch):
assert os.path.exists(lockfile)
with open(lockfile) as f:
lockfile_content = f.read()
assert (lockfile_content == """\
assert """\
# appenv-requirements-hash: ffa75c00de4879b41008d0e9f6b9953cf7d65bb5f5b85d1d049e783b2486614d
ducker==2.0.1
setuptools==40.6.2
""") # noqa
setuptools==""" in lockfile_content # noqa


@pytest.mark.skipif(
Expand Down

0 comments on commit 6909826

Please sign in to comment.