Make test less erratic by adding five second tolerance
This commit is contained in:
parent
263b42a73d
commit
7a015b1fe2
|
@ -49,7 +49,6 @@ test "a common filter", %{conn: conn, user: user} do
|
||||||
assert filter.hide == true
|
assert filter.hide == true
|
||||||
end
|
end
|
||||||
|
|
||||||
@tag :erratic
|
|
||||||
test "a filter with expires_in", %{conn: conn, user: user} do
|
test "a filter with expires_in", %{conn: conn, user: user} do
|
||||||
in_seconds = 600
|
in_seconds = 600
|
||||||
|
|
||||||
|
@ -65,12 +64,13 @@ test "a filter with expires_in", %{conn: conn, user: user} do
|
||||||
|
|
||||||
assert response["irreversible"] == false
|
assert response["irreversible"] == false
|
||||||
|
|
||||||
expires_at =
|
expected_expiration =
|
||||||
NaiveDateTime.utc_now()
|
NaiveDateTime.utc_now()
|
||||||
|> NaiveDateTime.add(in_seconds)
|
|> NaiveDateTime.add(in_seconds)
|
||||||
|> Pleroma.Web.CommonAPI.Utils.to_masto_date()
|
|
||||||
|
|
||||||
assert response["expires_at"] == expires_at
|
{:ok, actual_expiration} = NaiveDateTime.from_iso8601(response["expires_at"])
|
||||||
|
|
||||||
|
assert abs(NaiveDateTime.diff(expected_expiration, actual_expiration)) <= 5
|
||||||
|
|
||||||
filter = Filter.get(response["id"], user)
|
filter = Filter.get(response["id"], user)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue