mix tests

This commit is contained in:
Inhji 2023-07-16 16:40:33 +02:00
parent 3bb4e8c623
commit 7627886c32
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<html>
<head>
<title>Not found</title>
<title>Not Found</title>
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />

View file

@ -51,7 +51,7 @@ defmodule Chiya.TagUpdaterTest do
assert Enum.count(note.tags) == 1
tag = List.first(note.tags)
assert tag.name == "Foo"
assert tag.name == "foo"
end
end
end

View file

@ -9,6 +9,6 @@ defmodule ChiyaWeb.ErrorHTMLTest do
end
test "renders 500.html" do
assert render_to_string(ChiyaWeb.ErrorHTML, "500", "html", []) =~ "Internal Server Error"
assert render_to_string(ChiyaWeb.ErrorHTML, "500", "html", []) =~ "Infernal Server Error"
end
end