From 28d471d04c614b7b89db4acec7d01611678dd23d Mon Sep 17 00:00:00 2001 From: Piotr Debski Date: Tue, 12 Jul 2022 12:29:46 +0200 Subject: [PATCH] remove inactive core fix in test_print_statistics_inactive Signed-off-by: Piotr Debski --- test/functional/tests/incremental_load/test_incremental_load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/tests/incremental_load/test_incremental_load.py b/test/functional/tests/incremental_load/test_incremental_load.py index 357ea18..f688f0a 100644 --- a/test/functional/tests/incremental_load/test_incremental_load.py +++ b/test/functional/tests/incremental_load/test_incremental_load.py @@ -500,7 +500,7 @@ def test_print_statistics_inactive(cache_mode): f"({inactive_stats_after.inactive_usage_stats.inactive_occupancy}).") with TestRun.step("Remove inactive core from cache and check if cache is in running state."): - cache.remove_inactive_core(second_core.core_id) + cache.remove_inactive_core(second_core.core_id, force=True) cache_status = cache.get_status() if cache_status != CacheStatus.running: TestRun.fail(f"Cache did not change status to 'running' after plugging core device. "