fixes text response test

This commit is contained in:
Raphael Maenle 2022-01-10 23:58:56 +01:00
parent d2fe15d3ae
commit 32c0dbd85a

View File

@ -3,6 +3,6 @@ defmodule BumpWeb.PageControllerTest do
test "GET /", %{conn: conn} do test "GET /", %{conn: conn} do
conn = get(conn, "/") conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!" assert text_response(conn, 200) =~ "Bump API"
end end
end end