We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a7d091 commit d47105fCopy full SHA for d47105f
ax/models/torch/tests/test_surrogate.py
@@ -656,7 +656,10 @@ def test_construct_model(self) -> None:
656
self.assertTrue(torch.equal(call_kwargs["train_Y"], self.Ys[0]))
657
self.assertIsInstance(call_kwargs["input_transform"], Normalize)
658
self.assertIsNone(call_kwargs["outcome_transform"])
659
- self.assertEqual(len(call_kwargs), 4)
+ self.assertEqual(
660
+ len(call_kwargs),
661
+ 6 if botorch_model_class is SaasFullyBayesianSingleTaskGP else 4,
662
+ )
663
664
mock_construct_inputs.assert_called_with(
665
training_data=self.training_data[0],
0 commit comments