Fix values being called at Array instead of Hash

This commit is contained in:
Z.J. van de Weg 2017-03-06 09:09:18 +01:00
parent 2cc6485518
commit 3b89ebb81c
2 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ describe Mattermost::Team do
context 'for valid request' do
let(:response) do
[{
{ "xiyro8huptfhdndadpz8r3wnbo" => {
"id" => "xiyro8huptfhdndadpz8r3wnbo",
"create_at" => 1482174222155,
"update_at" => 1482174222155,
@ -26,7 +26,7 @@ describe Mattermost::Team do
"allowed_domains" => "",
"invite_id" => "o4utakb9jtb7imctdfzbf9r5ro",
"allow_open_invite" => false
}]
} }
end
before do
@ -39,7 +39,7 @@ describe Mattermost::Team do
end
it 'returns a token' do
is_expected.to eq(response)
is_expected.to eq(response.values)
end
end

View file

@ -92,7 +92,7 @@ describe MattermostSlashCommandsService, :models do
to_return(
status: 200,
headers: { 'Content-Type' => 'application/json' },
body: ['list'].to_json
body: { 'list' => true }.to_json
)
end