diff --git a/src/AdamWathan/Form/Elements/Label.php b/src/AdamWathan/Form/Elements/Label.php
index a2b23ae..8acdb24 100644
--- a/src/AdamWathan/Form/Elements/Label.php
+++ b/src/AdamWathan/Form/Elements/Label.php
@@ -20,13 +20,13 @@ public function render()
$tags = [sprintf('';
diff --git a/tests/LabelTest.php b/tests/LabelTest.php
index dc0701d..d419971 100644
--- a/tests/LabelTest.php
+++ b/tests/LabelTest.php
@@ -75,12 +75,4 @@ public function testCanRetrieveElement()
$result = $label->after($element)->getControl();
$this->assertEquals($element, $result);
}
-
- public function testAgainstXssAttacksInLabel()
- {
- $label = new Label('');
- $expected = '';
- $result = $label->render();
- $this->assertEquals($expected, $result);
- }
}