Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit eb0da19

Browse files
authored
Grammar pass
1 parent 2df424c commit eb0da19

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/guides/v2.4/test/integration/integration_test_execution.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ Leave all the settings that do not start with `db-` and `amqp-` at their default
9999
You can include additional setup options—available to the `setup:install` command—in the test configuration file. A
100100
complete list of options is available [here]({{ page.baseurl }}/install-gde/install/cli/install-cli.html).
101101

102-
If your project requires custom entries in the `core_config_data` table (like the introduction of new 3rd party services
102+
If your project requires custom entries in the `core_config_data` table, such as the introduction of new 3rd party services
103103
that affect your application on a basic level or configuration for logic that would prevent access if not configured
104-
properly), Magento provides a file template that you can use for this purpose.
104+
properly, Magento provides a file template for this purpose.
105105

106106
Copy `dev/tests/integration/etc/config-global.php.dist` to `dev/tests/integration/etc/config-global.php` (without the
107107
`.dist` suffix) and add your path-value pairs there. Do not remove existing entries from the file as they are required
@@ -110,12 +110,6 @@ for the Integration Test Framework to run tests properly.
110110
Example:
111111

112112
```php
113-
<?php
114-
/**
115-
* Copyright © Magento, Inc. All rights reserved.
116-
* See COPYING.txt for license details.
117-
*/
118-
119113
return [
120114
'customer/password/limit_password_reset_requests_method' => 0,
121115
'admin/security/admin_account_sharing' => 1,
@@ -124,8 +118,8 @@ return [
124118
];
125119
```
126120

127-
Remember that the file above is only for config files required by all the integration tests. If you need to introduce
128-
new configuration values only for particular tests to perform their function, you should use the
121+
Note that the file above is only for configuration files required by all integration tests. If you need to introduce
122+
new configuration values for particular tests to perform their function, use the
129123
[@magentoConfigFixture]({{ page.baseurl }}/test/integration/annotations/magento-config-fixture.html) annotation instead.
130124

131125
{:.bs-callout-info}

0 commit comments

Comments
 (0)