small refactor for eda xml parser

This commit is contained in:
dandds
2018-10-17 16:31:44 -04:00
parent 4fefd017a2
commit af81cd1da7
2 changed files with 8 additions and 8 deletions

View File

@@ -22,5 +22,5 @@ def test_contract_not_found():
def test_eda_xml_parser():
with open("tests/fixtures/eda_contract.xml") as contract:
eda_data = parse_eda_xml(contract.read())
assert eda_data["clin_0001"] == 200000.00
assert eda_data["clin_0001"] == 200_000.00
assert not eda_data["clin_0003"]