Skip to content

Commit 1e9de53

Browse files
authored
test: enable skipped test cases (#228)
1 parent 33809d0 commit 1e9de53

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

test/redis_client/test_cluster.rb

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,6 @@ def test_global_pubsub_without_timeout
219219
end
220220

221221
def test_global_pubsub_with_multiple_channels
222-
if hiredis_used?
223-
skip('FIXME: SEGV occured if using hiredis driver')
224-
return
225-
end
226-
227222
sub = Fiber.new do |pubsub|
228223
pubsub.call('SUBSCRIBE', *Array.new(10) { |i| "g-chan#{i}" })
229224
got = collect_messages(pubsub, size: 10).sort_by { |e| e[1].to_s }
@@ -287,11 +282,6 @@ def test_sharded_pubsub_with_multiple_channels
287282
return
288283
end
289284

290-
if hiredis_used?
291-
skip('FIXME: SEGV occured if using hiredis driver')
292-
return
293-
end
294-
295285
sub = Fiber.new do |pubsub|
296286
10.times { |i| pubsub.call('SSUBSCRIBE', "s-chan#{i}") }
297287
got = collect_messages(pubsub, size: 10).sort_by { |e| e[1].to_s }

0 commit comments

Comments
 (0)