contribsys / faktory_worker_ruby

Faktory worker for Ruby
GNU Lesser General Public License v3.0
214 stars 31 forks source link

Fix broken test caused by checking for attributes #71

Closed Igneous closed 1 year ago

Igneous commented 1 year ago

Faktory lib checks for the presence of string hash keys, test passes a hash with symbols.

Most likely in production it's correct to expect string keys (given json decoding), but the test is directly calling .push.

This PR fixes the data structure we're passing.

mperham commented 1 year ago

Thank you!