diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php b/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php
index 6af4636..f5548f7 100644
--- a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php
+++ b/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php
@@ -127,6 +127,15 @@ public function testTable() {
 
     $view->destroy();
 
+    // Excluded field to make sure its wrapping td doesn't show.
+    $this->prepareView($view);
+    $style_plugin = $view->style_plugin;
+    $view->field['name']->options['exclude'] = TRUE;
+    $output = $view->preview();
+    $output = drupal_render($output);
+    $this->assertFalse(strpos($output, 'views-field-name') !== FALSE, "Excluded field's wrapper was not rendered.");
+    $view->destroy();
+
     // Render a non empty result, and ensure that the empty area handler is not
     // rendered.
     $this->executeView($view);
