diff --git a/tests/test_pytest_memray.py b/tests/test_pytest_memray.py index b023956..926b3d9 100644 --- a/tests/test_pytest_memray.py +++ b/tests/test_pytest_memray.py @@ -369,11 +369,11 @@ def test_memray_report_limit(pytester: Pytester) -> None: allocator = MemoryAllocator() def allocating_func1(): - allocator.valloc(1024) + allocator.valloc(1024*1024) allocator.free() def allocating_func2(): - allocator.valloc(1024*2) + allocator.valloc(1024*1024*2) allocator.free() def test_foo():