1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 16:22:22 +02:00

[ticket/16141] Add assertion for memory limit divided by two

PHPBB3-16141
This commit is contained in:
Marc Alexander 2019-10-19 17:35:25 +02:00
parent b149e50bf1
commit 6eb0041453
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -88,6 +88,11 @@ class phpbb_plupload_test extends phpbb_test_case
'upload_max_filesize' => 1000,
'post_max_size' => 600,
], 300],
[[
'memory_limit' => 1000,
'upload_max_filesize' => 2000,
'post_max_size' => 3000,
], 500],
];
}