From d914505adef9ddb4b24fe1b4f242c4146b00ae1e Mon Sep 17 00:00:00 2001 From: Hrithik Tiwari Date: Sun, 10 Mar 2024 06:09:28 +0530 Subject: [PATCH] Updated the default text that comes with it The default text that comes with the test is not changed to this so some new users would find it easy to follow along (like me) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cc4d78c..3048440 100644 --- a/README.md +++ b/README.md @@ -601,13 +601,13 @@ Open the `test/chat_web/controllers/page_controller_test.exs` file and replace the line: ```elixir -assert html_response(conn, 200) =~ "Welcome to Phoenix!" + assert html_response(conn, 200) =~ "Peace of mind from prototype to production" ``` With: ```elixir -assert html_response(conn, 200) =~ "Phoenix Chat Example" + assert html_response(conn, 200) =~ "Phoenix Chat Example" ``` Now if you run the tests again, they will pass: