Fixed test
This commit is contained in:
parent
784d55d1a0
commit
a33ea86217
|
@ -3,7 +3,7 @@ from decimal import Decimal
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from personal_data.main import to_value
|
from personal_data.util import csv_str_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_to_value(text, parsed):
|
def test_csv_str_to_value(text, parsed):
|
||||||
assert to_value(text) == parsed, text
|
assert csv_str_to_value(text) == parsed, text
|
||||||
|
|
Loading…
Reference in New Issue
Block a user