mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-02 17:17:29 +08:00
mix format
This commit is contained in:
parent
6ef803f95b
commit
6d91320441
1 changed files with 4 additions and 3 deletions
|
|
@ -2,9 +2,10 @@ defmodule LivebookWeb.ErrorsTest do
|
|||
use LivebookWeb.ConnCase, async: true
|
||||
|
||||
test "renders 404", %{conn: conn} do
|
||||
response = assert_error_sent :not_found, fn ->
|
||||
get(conn, "/this/does/not/exist")
|
||||
end
|
||||
response =
|
||||
assert_error_sent :not_found, fn ->
|
||||
get(conn, "/this/does/not/exist")
|
||||
end
|
||||
|
||||
assert {404, _, body} = response
|
||||
assert body =~ "No Numbats here!"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue