1
0

Compare commits

..

No commits in common. "b45b611eea7bf828701a81d2a7571621e4c776b4" and "784d55d1a048600c7c97c1637428d7054fe801cf" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
__version__ = '0.1.43' __version__ = '0.1.42'

View File

@ -3,7 +3,7 @@ from decimal import Decimal
import pytest import pytest
from personal_data.util import csv_str_to_value from personal_data.main import to_value
PARSE_MAPPINGS = [ PARSE_MAPPINGS = [
( (
@ -31,5 +31,5 @@ PARSE_MAPPINGS = [
@pytest.mark.parametrize('text,parsed', PARSE_MAPPINGS) @pytest.mark.parametrize('text,parsed', PARSE_MAPPINGS)
def test_csv_str_to_value(text, parsed): def test_to_value(text, parsed):
assert csv_str_to_value(text) == parsed, text assert to_value(text) == parsed, text