forked from AkkomaGang/akkoma
Blurhash varies slightly by computer generating it, so just validate it wasn't nil
This commit is contained in:
parent
f1abe39f6f
commit
3121ed1325
1 changed files with 4 additions and 3 deletions
|
@ -14,9 +14,10 @@ test "adds the dimensions and blurhash for images" do
|
|||
tempfile: Path.absname("test/fixtures/image.jpg")
|
||||
}
|
||||
|
||||
assert {:ok, :filtered,
|
||||
%{width: 1024, height: 768, blurhash: "V5DI,j_NIS%eI.RDI[RS%1WDr=IVD-RoV{?Ge-tiSKkR"}} =
|
||||
AnalyzeMetadata.filter(upload)
|
||||
{:ok, :filtered, meta} = AnalyzeMetadata.filter(upload)
|
||||
|
||||
assert %{width: 1024, height: 768} = meta
|
||||
assert meta.blurhash
|
||||
end
|
||||
|
||||
test "adds the dimensions for videos" do
|
||||
|
|
Loading…
Reference in a new issue