From 7f6d2914c64e7b5224784152fc2d315b6b5b9d60 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 20 Oct 2019 02:35:17 +0900 Subject: [PATCH] Do not refer guides in edgeguides [ci skip] --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/testing.md b/guides/source/testing.md index 8239dccf24..2dea21fd5f 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1112,7 +1112,7 @@ end Now you can try running all the tests and they should pass. -NOTE: If you followed the steps in the [Basic Authentication](https://guides.rubyonrails.org/getting_started.html#basic-authentication) section, you'll need to add authorization to every request header to get all the tests passing: +NOTE: If you followed the steps in the [Basic Authentication](getting_started.html#basic-authentication) section, you'll need to add authorization to every request header to get all the tests passing: ```ruby post articles_url, params: { article: { body: 'Rails is awesome!', title: 'Hello Rails' } }, headers: { Authorization: ActionController::HttpAuthentication::Basic.encode_credentials('dhh', 'secret') }