Skip to content

Commit

Permalink
Merge pull request #806 from tisnik/updated-comments-in-python-normal…
Browse files Browse the repository at this point in the history
…izer-tests

Updated comments in Python normalizer tests
  • Loading branch information
tisnik authored Mar 25, 2019
2 parents 56c1e21 + 5d6f10b commit 8a7c9ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/data_normalizer/test_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@
{'declared_licenses': 'MIT'}),
])
def test_constructor(data, keymap, expected):
"""Test AbstractDataNormalizer constructor."""
"""Test PythonDataNormalizer constructor."""
dn = PythonDataNormalizer(data)
assert dn is not None
assert keymap
assert expected


def test_constructor_error_input():
"""Test AbstractDataNormalizer constructor for error input."""
"""Test PythonDataNormalizer constructor for error input."""
dn = PythonDataNormalizer("error")
assert dn is not None


def test_normalize_error_input():
"""Test AbstractDataNormalizer constructor for error input."""
"""Test PythonDataNormalizer constructor for error input."""
dn = PythonDataNormalizer("error")
assert dn is not None
n = dn.normalize()
Expand Down

0 comments on commit 8a7c9ad

Please sign in to comment.