diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-02-24 19:56:27 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-02-24 19:56:27 +0300 |
commit | 8efae966b1e87fe448a13d04eae0898c4a102c29 (patch) | |
tree | 9c2cb158991e7ac582a9e6b4e2979016ec3a4428 /test/http/connection_test.exs | |
parent | d44f9e3b6cfd5a0dae07f6194bfd05360afd6560 (diff) | |
download | pleroma-8efae966b1e87fe448a13d04eae0898c4a102c29.tar.gz pleroma-8efae966b1e87fe448a13d04eae0898c4a102c29.zip |
open conn in separate task
Diffstat (limited to 'test/http/connection_test.exs')
-rw-r--r-- | test/http/connection_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http/connection_test.exs b/test/http/connection_test.exs index c1ff0cc21..53ccbc9cd 100644 --- a/test/http/connection_test.exs +++ b/test/http/connection_test.exs @@ -124,7 +124,7 @@ defmodule Pleroma.HTTP.ConnectionTest do uri = URI.parse("https://some-domain.com") pid = Process.whereis(:federation) - :ok = Pleroma.Pool.Connections.open_conn(uri, :gun_connections, genserver_pid: pid) + :ok = Pleroma.Gun.Conn.open(uri, :gun_connections, genserver_pid: pid) opts = Connection.options(uri) |