diff --git a/core/lib/Thelia/Core/Template/TestLoop/Equal.php b/core/lib/Thelia/Core/Template/TestLoop/Equal.php
deleted file mode 100755
index 5e812a7a4..000000000
--- a/core/lib/Thelia/Core/Template/TestLoop/Equal.php
+++ /dev/null
@@ -1,51 +0,0 @@
-. */
-/* */
-/*************************************************************************************/
-
-namespace Thelia\Core\Template\TestLoop;
-
-use Thelia\Tpex\Element\TestLoop\BaseTestLoop;
-
-/**
- *
- * TestLoop equal, test if value and variable are equal
- *
- * example :
- *
- *
- * Result display here if variable and value are equal
- *
- * Result display here if variable and value are not equal
- * /TEST_equal>
- *
- * Class Equal
- * @package Thelia\Core\Template\TestLoop
- * @author Manuel Raynaud
- */
-class Equal extends BaseTestLoop
-{
-
- public function exec($variable, $value)
- {
- return $variable == $value;
- }
-}
\ No newline at end of file