Fixed test
This commit is contained in:
parent
784d55d1a0
commit
a33ea86217
|
@ -3,7 +3,7 @@ from decimal import Decimal
|
|||
|
||||
import pytest
|
||||
|
||||
from personal_data.main import to_value
|
||||
from personal_data.util import csv_str_to_value
|
||||
|
||||
PARSE_MAPPINGS = [
|
||||
(
|
||||
|
@ -31,5 +31,5 @@ PARSE_MAPPINGS = [
|
|||
|
||||
|
||||
@pytest.mark.parametrize('text,parsed', PARSE_MAPPINGS)
|
||||
def test_to_value(text, parsed):
|
||||
assert to_value(text) == parsed, text
|
||||
def test_csv_str_to_value(text, parsed):
|
||||
assert csv_str_to_value(text) == parsed, text
|
||||
|
|
Loading…
Reference in New Issue
Block a user