logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 73884441f31092bdb2f509950daf9bd3889a9a8b
parent: 74f7f308f879b26a261db3b5c1d389cea898541c
Author: kaniini <ariadne@dereferenced.org>
Date:   Tue, 20 Aug 2019 20:28:54 +0000

Merge branch 'chore/fix-flakey-aws-test' into 'develop'

test: rich media: aws signed url: increase TTL delta check to 2 seconds from 1

See merge request pleroma/pleroma!1587

Diffstat:

Mtest/web/rich_media/aws_signed_url_test.exs3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/web/rich_media/aws_signed_url_test.exs b/test/web/rich_media/aws_signed_url_test.exs @@ -60,7 +60,8 @@ defmodule Pleroma.Web.RichMedia.TTL.AwsSignedUrlTest do {:ok, cache_ttl} = Cachex.ttl(:rich_media_cache, url) # as there is delay in setting and pulling the data from cache we ignore 1 second - assert_in_delta(valid_till * 1000, cache_ttl, 1000) + # make it 2 seconds for flakyness + assert_in_delta(valid_till * 1000, cache_ttl, 2000) end defp construct_s3_url(timestamp, valid_till) do