diff --git c/core/profiles/standard/standard.install i/core/profiles/standard/standard.install
index f3eaf29..69c4d85 100644
--- c/core/profiles/standard/standard.install
+++ i/core/profiles/standard/standard.install
@@ -240,10 +240,11 @@ function standard_install() {
   variable_set('node_options_page', array('status'));
   variable_set('comment_page', COMMENT_NODE_HIDDEN);
 
-  // Don't display date and author information for "Basic page" nodes by default.
+  // Don't display date and author information
+  // for "Basic page" nodes by default.
   variable_set('node_submitted_page', FALSE);
 
-  // Enable user picture support and set the default to a square thumbnail option.
+  // Enable user picture support, set the default to a square thumbnail option.
   variable_set('user_pictures', '1');
   variable_set('user_picture_dimensions', '1024x1024');
   variable_set('user_picture_file_size', '800');
@@ -253,9 +254,10 @@ function standard_install() {
   $user_settings = config('user.settings');
   $user_settings->set('register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL)->save();
 
-  // Create a default vocabulary named "Tags", enabled for the 'article' content type.
   $description = st('Use tags to group articles on similar topics into categories.');
   $help = st('Enter a comma-separated list of words to describe your content.');
+  // Create a default vocabulary named "Tags",
+  // enabled for the 'article' content type.
   $vocabulary = entity_create('taxonomy_vocabulary', array(
     'name' => st('Tags'),
     'description' => $description,
@@ -305,10 +307,11 @@ function standard_install() {
   field_create_instance($instance);
 
 
-  // Create an image field named "Image", enabled for the 'article' content type.
-  // Many of the following values will be defaulted, they're included here as an illustrative examples.
+  // Create an image field named "Image",
+  // enabled for the 'article' content type.
+  // Many of the following values will be defaulted,
+  // they're included here as an illustrative examples.
   // See http://api.drupal.org/api/function/field_create_field/8
-
   $field = array(
     'field_name' => 'field_image',
     'type' => 'image',
@@ -327,7 +330,8 @@ function standard_install() {
   field_create_field($field);
 
 
-  // Many of the following values will be defaulted, they're included here as an illustrative examples.
+  // Many of the following values will be defaulted,
+  // they're included here as an illustrative examples.
   // See http://api.drupal.org/api/function/field_create_instance/8
   $instance = array(
     'field_name' => 'field_image',
diff --git c/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module i/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
index b3d9bbc..5019204 100644
--- c/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
+++ i/core/profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module
@@ -1 +1,5 @@
 <?php
+/**
+ * @file
+ * Testing profile test module.
+ */
diff --git c/core/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module i/core/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
index b3d9bbc..5019204 100644
--- c/core/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
+++ i/core/profiles/testing/modules/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.module
@@ -1 +1,5 @@
 <?php
+/**
+ * @file
+ * Testing profile test module.
+ */
