diff --git a/coder_sniffer/Drupal/Sniffs/Semantics/BrSniff.php b/coder_sniffer/Drupal/Sniffs/Semantics/BrSniff.php
deleted file mode 100644
index 17694ed..0000000
--- a/coder_sniffer/Drupal/Sniffs/Semantics/BrSniff.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-/**
- * Drupal_Sniffs_Semantics_BrSniff.
- *
- * PHP version 5
- *
- * @category PHP
- * @package  PHP_CodeSniffer
- * @link     http://pear.php.net/package/PHP_CodeSniffer
- */
-
-/**
- * Ensures that XHTML <br /> tags are used instead of <br>.
- *
- * @category PHP
- * @package  PHP_CodeSniffer
- * @link     http://pear.php.net/package/PHP_CodeSniffer
- */
-class Drupal_Sniffs_Semantics_BrSniff implements PHP_CodeSniffer_Sniff
-{
-
-
-    /**
-     * Returns an array of tokens this test wants to listen for.
-     *
-     * @return array
-     */
-    public function register()
-    {
-        return array(
-                T_INLINE_HTML,
-                T_CONSTANT_ENCAPSED_STRING,
-               );
-
-    }//end register()
-
-
-    /**
-     * Processes this test, when one of its tokens is encountered.
-     *
-     * @param PHP_CodeSniffer_File $phpcsFile The current file being processed.
-     * @param int                  $stackPtr  The position of the current token
-     *                                        in the stack passed in $tokens.
-     *
-     * @return void
-     */
-    public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
-    {
-        $tokens = $phpcsFile->getTokens();
-
-        if (strpos($tokens[$stackPtr]['content'], '<br>') !== false) {
-            $error = 'Use XHTML style <br /> tags instead of <br>';
-            $phpcsFile->addError($error, $stackPtr, 'XHTMLBr');
-        }
-
-    }//end process()
-
-
-}//end class
-
-?>
diff --git a/coder_sniffer/Test/bad/BadUnitTest.php b/coder_sniffer/Test/bad/BadUnitTest.php
index c1b1029..6e977e3 100644
--- a/coder_sniffer/Test/bad/BadUnitTest.php
+++ b/coder_sniffer/Test/bad/BadUnitTest.php
@@ -327,7 +327,6 @@ class Drupal_BadUnitTest extends CoderSniffUnitTest
                         714 => 1,
                         716 => 1,
                         717 => 1,
-                        719 => 1,
                         721 => 1,
                         724 => 1,
                         725 => 1,
@@ -363,7 +362,6 @@ class Drupal_BadUnitTest extends CoderSniffUnitTest
                 return array(
                         11 => 2,
                         15 => 2,
-                        19 => 1,
                        );
         }
         return array();
diff --git a/coder_sniffer/Test/bad/bad.php b/coder_sniffer/Test/bad/bad.php
index 0a37f90..7198764 100644
--- a/coder_sniffer/Test/bad/bad.php
+++ b/coder_sniffer/Test/bad/bad.php
@@ -716,7 +716,7 @@ $z = $foo ->x;
 // strings in l() should be translated.
 $x = l('Link text', '<front>');
 
-$x = 'Some markup text<br>';
+$x = 'Some markup text with allowed HTML5 <br> tag';
 
 $ip = $_SERVER['REMOTE_ADDR'];
 
diff --git a/coder_sniffer/Test/good/good.php b/coder_sniffer/Test/good/good.php
index d701a57..722afaa 100644
--- a/coder_sniffer/Test/good/good.php
+++ b/coder_sniffer/Test/good/good.php
@@ -638,3 +638,5 @@ l("<i class='icon icon-industrial-building'></i>", 'node/add/job', array(
   'attributes' => array('title' => t('add job')),
   'html'       => TRUE,
 ));
+
+$x = 'Some markup text with allowed HTML5 <br> tag';
