From 6a048fc6fbf89639390ea875992fd045c0020e9d Mon Sep 17 00:00:00 2001 From: Jorge Blanco Alonso Date: Wed, 23 Oct 2024 12:43:10 +0200 Subject: [PATCH] Adapt dry run test - Reduce lower bound memory to 60.0 --- tests/integration-e2e/test_dry_run_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-e2e/test_dry_run_workflow.py b/tests/integration-e2e/test_dry_run_workflow.py index da8bdb32..a4fa03ae 100644 --- a/tests/integration-e2e/test_dry_run_workflow.py +++ b/tests/integration-e2e/test_dry_run_workflow.py @@ -65,7 +65,7 @@ def test_dry_run_workflow(neurodamus_instance, USECASE3): assert 20.0 <= nd._dry_run_stats.cell_memory_total <= 30.0 assert 0.0 <= nd._dry_run_stats.synapse_memory_total <= 1.0 - assert 70.0 <= nd._dry_run_stats.base_memory <= 120.0 + assert 60.0 <= nd._dry_run_stats.base_memory <= 120.0 expected_items = { 'L4_PC-dSTUT': 2, 'L4_MC-dSTUT': 1,