Skip to content

Commit

Permalink
Fix rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
ericproulx committed Dec 29, 2023
1 parent 1dc9799 commit 77f2cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/support/cookie_helper.rb
Expand Up @@ -4,7 +4,7 @@ module Spec
module Support
module Helpers
def cookie_expires_value
@cookie_expired ||= Gem::Version.new(Rack.release) <= Gem::Version.new('2') ? Time.at(0).gmtime.rfc2822 : Time.at(0).httpdate
@cookie_expires_value ||= Gem::Version.new(Rack.release) <= Gem::Version.new('2') ? Time.at(0).gmtime.rfc2822 : Time.at(0).httpdate
end

def last_response_cookies
Expand Down

0 comments on commit 77f2cec

Please sign in to comment.