FIX: Flaky test

The previous solution was not always working, I believe this one
will be consistent.
This commit is contained in:
Robin Ward
2020-07-09 14:48:22 -04:00
parent dadf08fb3b
commit c2ce7f2673
2 changed files with 4 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ class CategoryHashtagsController < ApplicationController
slugs_and_urls = {}
Category.secured(guardian).where(id: ids).each do |category|
Category.secured(guardian).where(id: ids).order(:id).each do |category|
slugs_and_urls[category.slug] ||= category.url
slugs_and_urls[category.slug_path.last(2).join(':')] ||= category.url
end