-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed: Form cache test not properly ported from Drupal #5304
Comments
A PR is ready for review. Note that Backdrop does form caching via tempstore, so cache_clear_all() would not affect it. The test now does it the same way as a cron run would do it. |
PR looks great, thanks for the quick turn-around @indigoxela !! RTBC :D |
Doh! ...my bad 😓 |
Thanks @indigoxela and @jenlampton! And no problem @klonos! We missed it in review too. Merged backdrop/backdrop#3796 into 1.x and 1.20.x. |
This is a follow up to Issue #3375: Make cache_form expiration configurable, to mitigate runaway cache_form tables.
FormsFormCacheTestCase
was added to the codebase, but never adapted from Drupal. It extendsDrupalWebTestCase
instead ofBackdropWebTestCase
and still has agetInfo()
method. It was never added intosimpletest.tests.info
so has likely never been run.I stumbled across this while working on another issue that adds a test to this file. When I did a find/replace for DrupalWebTestCase/BackdropWebTestCase I caught an extra one I wasn't expecting!
The text was updated successfully, but these errors were encountered: