Skip to content

Commit 3438fe3

Browse files
committed
docs: decroate variables
1 parent 02942c4 commit 3438fe3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

user_guide_src/source/testing/feature.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ Requesting a Page
2929
Essentially, feature tests simply allows you to call an endpoint on your application and get the results back.
3030
To do this, you use the ``call()`` method.
3131

32-
1. The first parameter is the HTTP method to use (most frequently either GET or POST).
32+
1. The first parameter is the HTTP method to use (most frequently either ``GET`` or ``POST``).
3333
2. The second parameter is the URI path on your site to test.
3434
3. The third parameter ``$params`` accepts an array that is used to populate the
3535
superglobal variables for the HTTP verb you are using. So, a method of **GET**
36-
would have the **$_GET** variable populated, while a **POST** request would
37-
have the **$_POST** array populated. The ``$params`` is also used in
36+
would have the ``$_GET`` variable populated, while a **POST** request would
37+
have the ``$_POST`` array populated. The ``$params`` is also used in
3838
:ref:`feature-formatting-the-request`.
3939

4040
.. note:: The ``$params`` array does not make sense for every HTTP verb, but is

0 commit comments

Comments
 (0)