diff --git a/test/unit/plugins/commands/serve/mappers_test.rb b/test/unit/plugins/commands/serve/mappers_test.rb index 7aa8e353d..9dcf17e27 100644 --- a/test/unit/plugins/commands/serve/mappers_test.rb +++ b/test/unit/plugins/commands/serve/mappers_test.rb @@ -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