From 9b09c959db3afe1d92552c3edc95efbfcfec3ad0 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Sat, 15 Jun 2024 14:23:54 +0200 Subject: [PATCH] spec_helper.rb: add missing `=` typo from https://github.com/voxpupuli/modulesync_config/pull/909 --- moduleroot/spec/spec_helper.rb.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moduleroot/spec/spec_helper.rb.erb b/moduleroot/spec/spec_helper.rb.erb index 347087ee..eaeee607 100644 --- a/moduleroot/spec/spec_helper.rb.erb +++ b/moduleroot/spec/spec_helper.rb.erb @@ -15,7 +15,7 @@ RSpec.configure do |c| c.hiera_config = <%= @configs['hiera_config'] %> <%- end -%> <%- if @configs['mock_with'] -%> - c.mock_with <%= @configs['mock_with'] %> + c.mock_with = <%= @configs['mock_with'] %> <%- end -%> end <%- end -%>