Skip to content

Commit

Permalink
Fix test class signature. (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
kklein authored Aug 7, 2024
1 parent 7ddf544 commit 1c4f019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_metalearner.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def fit_all_treatment(
def predict(self, X, is_oos, oos_method=None):
return np.zeros((len(X), self.n_variants - 1, 1))

def evaluate(self, X, y, w, is_oos, oos_method=None):
def evaluate(self, X, y, w, is_oos, oos_method=None, scoring=None):
return {}

def predict_conditional_average_outcomes(self, X, is_oos, oos_method=None):
Expand Down

0 comments on commit 1c4f019

Please sign in to comment.