0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-26 02:50:28 +01:00

rubocop changes

Dieser Commit ist enthalten in:
merefield 2021-10-22 19:04:37 +01:00
Ursprung 30fe73570a
Commit 0b8fced879

Datei anzeigen

@ -311,9 +311,8 @@ describe CustomWizard::Action do
result = CustomWizard::Api::Endpoint.request("my_api", endpoint_id, "some_body") result = CustomWizard::Api::Endpoint.request("my_api", endpoint_id, "some_body")
log_entry = CustomWizard::Api::LogEntry.list("my_api").first log_entry = CustomWizard::Api::LogEntry.list("my_api").first
expect(result).to eq({:error=>"API request failed"}) expect(result).to eq({ error: "API request failed" })
expect(log_entry.status).to eq('FAILURE') expect(log_entry.status).to eq('FAILURE')
end end
end end
end end