CCI-MOC / flocx-market

2 stars 9 forks source link

Fix test_invalid_data_type test in test_matcher.py #28

Closed larsks closed 5 years ago

larsks commented 5 years ago

The test_invalid_data_type test included two calls to match_specs inside a pytest with raises block. The second test would never run (because the exception raised by the first call would exit the with block). This commit removes the second call to match_specs.

Closes #27