diff options
author | lain <lain@soykaf.club> | 2020-12-18 19:49:01 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-12-18 19:53:19 +0100 |
commit | 95a9bdfc374a013be47e74b25bdba5d91f51948b (patch) | |
tree | 8c978c04055f71704ddf6f862effdf9462654a88 /test/pleroma/web/media_proxy | |
parent | 713612c37725c81b0906b03528c9eaa474816c7d (diff) | |
download | pleroma-95a9bdfc374a013be47e74b25bdba5d91f51948b.tar.gz |
Tests: Use NullCache for async tests.
Caching can't work in async tests, so for them it is mocked to a
null cache that is always empty. Synchronous tests are stubbed
with the real Cachex, which is emptied after every test.
Diffstat (limited to 'test/pleroma/web/media_proxy')
-rw-r--r-- | test/pleroma/web/media_proxy/invalidation_test.exs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/pleroma/web/media_proxy/invalidation_test.exs b/test/pleroma/web/media_proxy/invalidation_test.exs index b9f1066f3..b7be36b47 100644 --- a/test/pleroma/web/media_proxy/invalidation_test.exs +++ b/test/pleroma/web/media_proxy/invalidation_test.exs @@ -3,8 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Web.MediaProxy.InvalidationTest do - use ExUnit.Case - use Pleroma.Tests.Helpers + use Pleroma.DataCase alias Pleroma.Config alias Pleroma.Web.MediaProxy.Invalidation |