Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Mar 15, 2023
1 parent f95f983 commit cbb8168
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_parsers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from creosote.parsers import PackageReader
from creosote.parsers import DependencyReader


@pytest.mark.parametrize(
Expand All @@ -15,7 +15,7 @@
],
)
def test_dependency_without_version_constraint(dependency_string, expected_package):
assert expected_package == PackageReader.dependency_without_version_constraint(
assert expected_package == DependencyReader.dependency_without_version_constraint(
dependency_string
)

Expand All @@ -30,6 +30,6 @@ def test_dependency_without_version_constraint(dependency_string, expected_packa
],
)
def test_pyproject_directref_package_name(dependency_string, expected_package):
assert expected_package == PackageReader.dependency_without_direct_reference(
assert expected_package == DependencyReader.dependency_without_direct_reference(
dependency_string
)

0 comments on commit cbb8168

Please sign in to comment.