diff --git a/tests/test_infrastructure_response_module.py b/tests/test_infrastructure_response_module.py index bdb9edf..2e3b659 100644 --- a/tests/test_infrastructure_response_module.py +++ b/tests/test_infrastructure_response_module.py @@ -19,8 +19,6 @@ calculate_output_stats, calculate_recovery_stats, calculate_summary_statistics, - _calculate_class_failures, - _calculate_exceedance_probs, _pe2pb, parallel_recovery_analysis ) @@ -108,23 +106,6 @@ def test_pe2pb_properties(): assert len(result) == len(pe) + 1 assert np.all(result >= 0) - -def test_calculate_class_failures(): - response_array = np.array([ - [[1, 2], [2, 3]], - [[2, 3], [3, 4]] - ]) - comp_indices = np.array([0]) - result = _calculate_class_failures(response_array, comp_indices, threshold=2) - assert isinstance(result, np.ndarray) - assert result.shape == (2, 2) - -def test_calculate_exceedance_probs(): - frag_array = np.array([[1, 2], [2, 3]]) - result = _calculate_exceedance_probs(frag_array, num_samples=2) - assert isinstance(result, np.ndarray) - assert len(result) == 2 - def test_calc_tick_vals(): # Test normal case val_list = [0.1, 0.2, 0.3, 0.4, 0.5]