Update mapper tests for hash with indifferent access

This commit is contained in:
sophia 2022-06-29 16:43:19 -05:00
parent 67a5c43873
commit 0372da5f5f

View File

@ -23,7 +23,8 @@ describe VagrantPlugins::CommandServe::Mappers do
)
output = subject.map(input, to: Hash)
expect(output).to eq({error_check: false})
expect(output["error_check"]).to eq(false)
expect(output[:error_check]).to eq(false)
end
end