Skip to content
Snippets Groups Projects
Commit 8ea497b1 authored by kohlhaasrebecca's avatar kohlhaasrebecca
Browse files

[Test] Last fixes to let tests run through

parent 34e87fad
No related branches found
No related tags found
2 merge requests!32Merge last changes for new release,!30Moved AL into SeqDesign and restructured score combination
......@@ -912,7 +912,7 @@ def test_plot_log_BME() -> None:
engine = Engine(mm, mod, expdes)
bi = BayesInference(engine)
bi.log_BME = np.array([[0, 0.2], [0, 0.2]])
bi.log_BME = np.array([0, 0.2, 0, 0.2])
bi.n_tot_measurement = 1
bi.plot_log_BME()
......@@ -936,7 +936,7 @@ def test_plot_log_BME_noemulator() -> None:
engine = Engine(mm, mod, expdes)
bi = BayesInference(engine)
bi.log_BME = np.array([[0, 0.2], [0, 0.2]])
bi.log_BME = np.array([0, 0.2, 0, 0.2])
bi.n_tot_measurement = 1
bi.emulator = False
bi.plot_log_BME()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment