Skip to content

Commit 2c1f9d7

Browse files
committed
chore: lint fix
1 parent bceda6a commit 2c1f9d7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/test_distribution_estimator_base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,9 @@ def test_predict_success(self):
154154
# Arrange
155155
treatment_arms_test = np.array([0, 1])
156156
locations_test = np.array([3, 6])
157-
expected_output = np.array([0.4, 0])
158157

159158
# Act
160-
output = self.estimator.predict(treatment_arms_test, locations_test)
159+
self.estimator.predict(treatment_arms_test, locations_test)
161160

162161
# Assert
163162
self.estimator.compute_cumulative_distribution.assert_called_once()

0 commit comments

Comments
 (0)