diff options
author | lain <lain@soykaf.club> | 2020-05-06 08:43:21 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-06 08:43:21 +0000 |
commit | 7fdc7078ae5c1cc3810e98cb1eac4ea90a977c73 (patch) | |
tree | 70123b185c3f0ad20fe1668150ecc322c43902e6 /test/support | |
parent | 76c1a7a34be73731158f9347f5a7df60d267d6e3 (diff) | |
parent | f2bf4390f4231d25486b803d426199975996f175 (diff) | |
download | pleroma-7fdc7078ae5c1cc3810e98cb1eac4ea90a977c73.tar.gz |
Merge branch 'openapi/lists' into 'develop'
Add OpenAPI spec for ListController
See merge request pleroma/pleroma!2453
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/conn_case.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/support/conn_case.ex b/test/support/conn_case.ex index fa30a0c41..91c03b1a8 100644 --- a/test/support/conn_case.ex +++ b/test/support/conn_case.ex @@ -74,7 +74,7 @@ defmodule Pleroma.Web.ConnCase do status = Plug.Conn.Status.code(status) unless lookup[op_id].responses[status] do - err = "Response schema not found for #{conn.status} #{conn.method} #{conn.request_path}" + err = "Response schema not found for #{status} #{conn.method} #{conn.request_path}" flunk(err) end |