From f7623a0af43aafe1a7d5c87df3671831a7e2d07e Mon Sep 17 00:00:00 2001 From: cjilbert504 <54157657+cjilbert504@users.noreply.github.com> Date: Tue, 23 May 2023 14:40:31 -0500 Subject: [PATCH] Update documentation to include proper class name formatting and pronoun problem fix --- 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 495402ef253..e5b676c64db 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1023,7 +1023,7 @@ that the text from the new article's title is on the articles index page. #### Testing for Multiple Screen Sizes If you want to test for mobile sizes on top of testing for desktop, -you can create another class that inherits from SystemTestCase and use in your +you can create another class that inherits from `ActionDispatch::SystemTestCase` and use it in your test suite. In this example a file called `mobile_system_test_case.rb` is created in the `/test` directory with the following configuration.