From 42c3bc5ef785b7fb9d1adfd0198c3a3988f1d881 Mon Sep 17 00:00:00 2001 From: Andrew Konchin Date: Thu, 9 May 2024 19:21:05 +0300 Subject: [PATCH] Suppress Rubocop warnings in language/execution_spec.rb --- language/execution_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/execution_spec.rb b/language/execution_spec.rb index ef1de3889..51bcde62e 100644 --- a/language/execution_spec.rb +++ b/language/execution_spec.rb @@ -38,7 +38,7 @@ 2.times do runner.instance_exec do - `test #{:command}` + `test #{:command}` # rubocop:disable Lint/LiteralInInterpolation end end @@ -84,7 +84,7 @@ 2.times do runner.instance_exec do - %x{test #{:command}} + %x{test #{:command}} # rubocop:disable Lint/LiteralInInterpolation end end