Fix values being called at Array instead of Hash
This commit is contained in:
parent
2cc6485518
commit
3b89ebb81c
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue