style: Removes unused function

This commit is contained in:
Deepak Mallubhotla 2022-04-30 11:51:28 -05:00
parent 0f78c7c2db
commit bbfbfa359a
Signed by: deepak
GPG Key ID: BEBAEBF28083E022

View File

@ -5,8 +5,6 @@ import pytest
def test_model_interface_not_implemented_one_dipoles():
model = DipoleModel()
model.point_length = lambda: 2
with pytest.raises(NotImplementedError):
model.get_dipoles(5)
@ -14,7 +12,5 @@ def test_model_interface_not_implemented_one_dipoles():
def test_model_interface_not_implemented_n_dipoles():
model = DipoleModel()
model.point_length = lambda: 2
with pytest.raises(NotImplementedError):
model.get_monte_carlo_dipole_inputs(5, 10)