Commit 34c6da4c by David Hotham Committed by Arun Babu Neelicattu

remove unused backwards-compatibility fixes

parent 473f95df
...@@ -96,9 +96,6 @@ sqlalchemy-sqlany (1.0.3) ...@@ -96,9 +96,6 @@ sqlalchemy-sqlany (1.0.3)
SAP Sybase SQL Anywhere dialect for SQLAlchemy SAP Sybase SQL Anywhere dialect for SQLAlchemy
""" """
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
output = tester.io.fetch_output() output = tester.io.fetch_output()
output = output.replace("transmogrify.sqlalchemy", "transmogrify-sqlalchemy")
assert output == expected assert output == expected
...@@ -1169,13 +1169,6 @@ def test_installer_with_pypi_repository( ...@@ -1169,13 +1169,6 @@ def test_installer_with_pypi_repository(
expected = fixture("with-pypi-repository") expected = fixture("with-pypi-repository")
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
extras = locker.written_data["package"][0]["extras"]
for key, values in list(extras.items()):
extras[key] = [
value.replace("zope.interface", "zope-interface") for value in values
]
assert not DeepDiff(expected, locker.written_data, ignore_order=True) assert not DeepDiff(expected, locker.written_data, ignore_order=True)
......
...@@ -833,13 +833,6 @@ def test_installer_with_pypi_repository( ...@@ -833,13 +833,6 @@ def test_installer_with_pypi_repository(
expected = fixture("with-pypi-repository") expected = fixture("with-pypi-repository")
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
extras = locker.written_data["package"][0]["extras"]
for key, values in list(extras.items()):
extras[key] = [
value.replace("zope.interface", "zope-interface") for value in values
]
assert not DeepDiff(expected, locker.written_data, ignore_order=True) assert not DeepDiff(expected, locker.written_data, ignore_order=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment