summaryrefslogtreecommitdiff
path: root/spec/ruby/language/execution_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/execution_spec.rb')
-rw-r--r--spec/ruby/language/execution_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/language/execution_spec.rb b/spec/ruby/language/execution_spec.rb
index ef1de38899..51bcde62e8 100644
--- a/spec/ruby/language/execution_spec.rb
+++ b/spec/ruby/language/execution_spec.rb
@@ -38,7 +38,7 @@ describe "``" do
2.times do
runner.instance_exec do
- `test #{:command}`
+ `test #{:command}` # rubocop:disable Lint/LiteralInInterpolation
end
end
@@ -84,7 +84,7 @@ describe "%x" do
2.times do
runner.instance_exec do
- %x{test #{:command}}
+ %x{test #{:command}} # rubocop:disable Lint/LiteralInInterpolation
end
end