From f98e1300090f9b770e389a05b28e262f832ec9d6 Mon Sep 17 00:00:00 2001 From: Drewniok Date: Thu, 21 Mar 2024 10:24:41 +0100 Subject: [PATCH] :white_check_mark: update test. --- .../sidb/test_assess_physical_population_stability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/pyfiction/test/algorithms/simulation/sidb/test_assess_physical_population_stability.py b/bindings/pyfiction/test/algorithms/simulation/sidb/test_assess_physical_population_stability.py index 552e34d1f..40371ef3b 100644 --- a/bindings/pyfiction/test/algorithms/simulation/sidb/test_assess_physical_population_stability.py +++ b/bindings/pyfiction/test/algorithms/simulation/sidb/test_assess_physical_population_stability.py @@ -14,7 +14,7 @@ def test_three_DBs(self): params.simulation_parameters.mu_minus = -0.25 cds = charge_distribution_surface(layout) result = assess_physical_population_stability(cds, params) - self.assertEqual(len(result), 3) + self.assertEqual(len(result), 5) self.assertLessEqual(result[0].system_energy, result[1].system_energy) self.assertLessEqual(result[1].system_energy, result[2].system_energy)