summaryrefslogtreecommitdiff
path: root/test/web/websub/websub_test.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-02-12 10:24:15 +0100
committerlain <lain@soykaf.club>2018-02-12 10:24:15 +0100
commitb331cb449a46bbead19fea4fba59762c1a2e3a10 (patch)
tree5ce081e6f6b6b6305ec8a280adb53a64fd08a941 /test/web/websub/websub_test.exs
parent8cf97ee8e15a36cbbf0964d5be53c88d29798163 (diff)
parent1bc34de4dfef5336d0dc165495ac66de2ffef2c6 (diff)
downloadpleroma-b331cb449a46bbead19fea4fba59762c1a2e3a10.tar.gz
pleroma-b331cb449a46bbead19fea4fba59762c1a2e3a10.zip
Merge branch 'develop' into feature/activitypub
Diffstat (limited to 'test/web/websub/websub_test.exs')
-rw-r--r--test/web/websub/websub_test.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/websub/websub_test.exs b/test/web/websub/websub_test.exs
index 6b2c612ad..566ce7fa5 100644
--- a/test/web/websub/websub_test.exs
+++ b/test/web/websub/websub_test.exs
@@ -174,7 +174,7 @@ defmodule Pleroma.Web.WebsubTest do
signed = Websub.sign("secret", "text")
assert signed == "B8392C23690CCF871F37EC270BE1582DEC57A503" |> String.downcase
- signed = Websub.sign("secret", [["て"], ['す']])
+ _signed = Websub.sign("secret", [["て"], ['す']])
end
describe "renewing subscriptions" do
@@ -184,7 +184,7 @@ defmodule Pleroma.Web.WebsubTest do
still_good = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, 2 * day), topic: "http://example.org/still_good", state: "accepted"})
needs_refresh = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, day - 100), topic: "http://example.org/needs_refresh", state: "accepted"})
- refresh = Websub.refresh_subscriptions()
+ _refresh = Websub.refresh_subscriptions()
assert still_good == Repo.get(WebsubClientSubscription, still_good.id)
refute needs_refresh == Repo.get(WebsubClientSubscription, needs_refresh.id)