We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests/tsc/test_vehicle.py
The test tests/tsc/test_vehicles.py::test_create_vehicle_list_2_vehicles_gradual_update throws the following error:
tests/tsc/test_vehicles.py::test_create_vehicle_list_2_vehicles_gradual_update
def test_create_vehicle_list_2_vehicles_gradual_update( simrequest, one_vehicle_xml, two_vehicle_xml ): simrequest.query = one_vehicle_xml vl = VehicleList(simrequest) assert len(vl) == 1 assert vl[0].distance == 25.00 simrequest.query = two_vehicle_xml vl.update_list() > assert len(vl) == 2 E assert 1 == 2 E + where 1 = len( abscissa acceleration distance driven ... ordinate speed vehid vehtype\n0 75.0 0.0 75.0 False ... 0.0 25.0 0 VL\n\n[1 rows x 11 columns]) tests/tsc/test_vehicles.py:133: AssertionError
Tests when debugged via pytest --trace .. are ok. So the total test should also pass.
pytest --trace ..
The text was updated successfully, but these errors were encountered:
No updates
Sorry, something went wrong.
aladinoster
No branches or pull requests
Description
The test
tests/tsc/test_vehicles.py::test_create_vehicle_list_2_vehicles_gradual_update
throws the following error:Reproduce
Expected behavior
Tests when debugged via
pytest --trace ..
are ok. So the total test should also pass.The text was updated successfully, but these errors were encountered: