localgovdrupal / localgov_subsites

Replaces LocalGov Campaigns with a new name and extended functionality to support subsites within LocalGov Drupal installations.
GNU General Public License v2.0
4 stars 2 forks source link

failing tests for Drupal 10 and search #132

Open finnlewis opened 9 months ago

finnlewis commented 9 months ago

See https://github.com/localgovdrupal/localgov_project/actions/runs/6801440506/job/18529445965#step:5:20

Testing locally with @andybroomfield and we seem to have figured that the search in tests performs better with spaces separating multiple words, rather than + sign.

$this->drupalGet('search', ['query' => ['s' => 'bias dogma revelation']]);

rather than

$this->drupalGet('search', ['query' => ['s' => 'bias+dogma+revelation']]);

I will test and submit a pull request.