From 63421ca0aabc37a3ac0df2fa5913b4b22584ce82 Mon Sep 17 00:00:00 2001 From: Serj Prikhodko Date: Thu, 18 Jan 2024 17:23:56 +0100 Subject: [PATCH] Disable mutant on `Symbol#dispatch` as it depends on Ruby version and would fail on CI. --- lib/unparser/emitter/primitive.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unparser/emitter/primitive.rb b/lib/unparser/emitter/primitive.rb index f26a9243..51738282 100644 --- a/lib/unparser/emitter/primitive.rb +++ b/lib/unparser/emitter/primitive.rb @@ -26,7 +26,7 @@ class Symbol < self private - def dispatch + def dispatch # mutant:disable if RUBY_VERSION < '3.2' && value[-1] == '=' write(":#{value.name.inspect}") else