Merge branch 'fix-test' into 'develop'
[akkoma] / test / web / oauth / token_test.exs
index f926ff50bf340f32a6d8eab4c48a53ea02aeecd7..e36ca5abcddcc3312f389c98af1341577d363d03 100644 (file)
@@ -54,8 +54,8 @@ defmodule Pleroma.Web.OAuth.TokenTest do
     {:ok, auth1} = Authorization.create_authorization(app1, user)
     {:ok, auth2} = Authorization.create_authorization(app2, user)
 
-    {:ok, token1} = Token.exchange_token(app1, auth1)
-    {:ok, token2} = Token.exchange_token(app2, auth2)
+    {:ok, _token1} = Token.exchange_token(app1, auth1)
+    {:ok, _token2} = Token.exchange_token(app2, auth2)
 
     {tokens, _} = Token.delete_user_tokens(user)