Skip to content

Commit bd90591

Browse files
committed
tests: test_display_statistics: Reduce cache size
Since the test starts multiple caches, using the smaller size makes it easier to run in virtualized testing environment with limited cache device capacity. Signed-off-by: Robert Baldyga <robert.baldyga@unvertical.com>
1 parent 4316163 commit bd90591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/tests/stats/test_display_statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def test_core_nonconfig_stats(stat_filter):
278278

279279
def storage_prepare():
280280
cache_dev = TestRun.disks["cache"]
281-
cache_parts = [Size(20, Unit.GibiByte)] * caches_count
281+
cache_parts = [Size(10, Unit.GibiByte)] * caches_count
282282
cache_dev.create_partitions(cache_parts)
283283
core_dev = TestRun.disks["core"]
284284
core_parts = [Size(10, Unit.GibiByte)] * cores_per_cache * caches_count

0 commit comments

Comments
 (0)