Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tests to do with Fiber.current.storage.keys NoMethodError
For ruby 3.3 and head on GitHub actions, the following error happens when accessing Fiber.current.storage.keys: ``` Failure/Error: fiber_storage = Fiber.current.storage.keys.each_with_object({}) do |key, memo| memo[key] = Fiber[key] end NoMethodError: undefined method 'keys' for nil ``` I don't think this should be happening as Fiber.current.storage is meant to always return a hash, even with Fiber.new(storage: nil) or Fiber.current.storage = nil.
- Loading branch information