mix format
authorFloatingGhost <hannah@coffee-and-dreams.uk>
Fri, 16 Dec 2022 11:18:14 +0000 (11:18 +0000)
committerFloatingGhost <hannah@coffee-and-dreams.uk>
Fri, 16 Dec 2022 11:18:14 +0000 (11:18 +0000)
test/pleroma/web/akkoma_api/metrics_controller_test.exs

index e703fc36c6f7e50f13a40ea5de4274516ed96f3c..9482f1312d250e39348a2183e81565a1bcfc6ea5 100644 (file)
@@ -4,15 +4,18 @@ defmodule Pleroma.Web.AkkomaAPI.MetricsControllerTest do
   describe "GET /api/v1/akkoma/metrics" do
     test "should return metrics when the user has admin:metrics" do
       %{conn: conn} = oauth_access(["admin:metrics"])
-      resp = conn
-      |> get("/api/v1/akkoma/metrics")
-      |> text_response(200)
+
+      resp =
+        conn
+        |> get("/api/v1/akkoma/metrics")
+        |> text_response(200)
 
       assert resp =~ "# HELP"
     end
 
     test "should not allow users that do not have the admin:metrics scope" do
       %{conn: conn} = oauth_access(["read:metrics"])
+
       conn
       |> get("/api/v1/akkoma/metrics")
       |> json_response(403)
@@ -21,6 +24,7 @@ defmodule Pleroma.Web.AkkomaAPI.MetricsControllerTest do
     test "should be disabled by export_prometheus_metrics" do
       clear_config([:instance, :export_prometheus_metrics], false)
       %{conn: conn} = oauth_access(["admin:metrics"])
+
       conn
       |> get("/api/v1/akkoma/metrics")
       |> response(404)