Skip to content

Commit

Permalink
Get tests passing with frozen-string-literals enabled.
Browse files Browse the repository at this point in the history
Though this does require patches for test-unit, as covered in test-unit/test-unit#149.
  • Loading branch information
pat committed Jun 21, 2017
1 parent ea9f1d2 commit 0b9fbf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/redis/connection/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def initialize(*args)
super(*args)

@timeout = @write_timeout = nil
@buffer = ""
@buffer = "".dup
end

def timeout=(timeout)
Expand Down

0 comments on commit 0b9fbf9

Please sign in to comment.