diff --git a/core/modules/simpletest/src/Tests/SimpleTestTest.php b/core/modules/simpletest/src/Tests/SimpleTestTest.php index abfa73b..1e0fee0 100755 --- a/core/modules/simpletest/src/Tests/SimpleTestTest.php +++ b/core/modules/simpletest/src/Tests/SimpleTestTest.php @@ -216,22 +216,23 @@ function testWebTestRunner() { * Test to be run and the results confirmed. */ function stubTest() { + // This causes the first of the ten passes asserted in confirmStubResults(). $this->pass($this->pass); // The first three fails are caused by enabling a non-existent module in // setUp(). This causes the fourth of the five fails asserted in // confirmStubResults(). $this->fail($this->fail); - // This causes the first three of the ten passes asserted in + // This causes the second to fourth of the ten passes asserted in // confirmStubResults(). $this->drupalCreateUser(array($this->valid_permission)); // This causes the fifth of the five fails asserted in confirmStubResults(). $this->drupalCreateUser(array($this->invalid_permission)); - // This causes the fourth of the ten passes asserted in confirmStubResults(). + // This causes the fifth of the ten passes asserted in confirmStubResults(). $this->pass(t('Test ID is @id.', array('@id' => $this->testId))); - // These cause the fifth to ninth of the ten passes asserted in + // These cause the sixth to ninth of the ten passes asserted in // confirmStubResults(). $this->assertTrue(file_exists(conf_path() . '/settings.testing.php')); // Check the settings.testing.php file got included.