fix discourse_hub_spec

This commit is contained in:
Neil Lalonde 2017-06-16 15:31:13 -04:00
parent c5de2976bd
commit c5f42f0e97
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ describe DiscourseHub do
it 'should return just return the json that the hub returns' do
hub_response = {'success' => 'OK', 'latest_version' => '0.8.1', 'critical_updates' => false}
stub_request(:get, "http://local.hub:3000/api/version_check").
stub_request(:get, (ENV['HUB_BASE_URL'] || "http://local.hub:3000/api") + "/version_check").
to_return(status: 200, body: hub_response.to_json)
expect(DiscourseHub.discourse_version_check).to eq(hub_response)