diff --git a/Testing/Code/FeatureExtraction/CMakeLists.txt b/Testing/Code/FeatureExtraction/CMakeLists.txt
index ff07b161071afe94c589f52df0180d261804db8f..c66349c794aa1feecc32fc3d5bf93b2c892f24c7 100755
--- a/Testing/Code/FeatureExtraction/CMakeLists.txt
+++ b/Testing/Code/FeatureExtraction/CMakeLists.txt
@@ -88,7 +88,7 @@ ADD_TEST(feTvTouzi ${FEATUREEXTRACTION_TESTS}
   --compare-image ${TOL}  ${BASELINE}/feFiltreTouzi_poupees_3.hd
                           ${TEMP}/feFiltreTouzi_poupees_3.hd  
         otbTouziEdgeDetector
-	${INPUTDATA}/poupees_1canal.c1
+	${INPUTDATA}/poupees_1canal.hd
 	${TEMP}/feFiltreTouzi_poupees_3.hd
 	3)
 	
@@ -96,7 +96,7 @@ ADD_TEST(feTvTouziDir ${FEATUREEXTRACTION_TESTS}
   --compare-image ${TOL}  ${BASELINE}/feFiltreTouzi_poupees_dir_3.hd
                           ${TEMP}/feFiltreTouzi_poupees_dir_3.hd  
         otbTouziEdgeDetectorDirection
-	${INPUTDATA}/poupees_1canal.c1
+	${INPUTDATA}/poupees_1canal.hd
 	${TEMP}/feFiltreTouzi_poupees_dir_3.hd
 	3)	
 
@@ -127,7 +127,7 @@ ADD_TEST(feTuLineCorrelationLinear ${FEATUREEXTRACTION_TESTS}
 ADD_TEST(feTuLineCorrelation ${FEATUREEXTRACTION_TESTS}  
         otbLineCorrelationDetector
 	${INPUTDATA}/poupees_1canal.hd
-	${TEMP}/feFiltreLineCorrelationLinear_poupees_2_3.hd
+	${TEMP}/feFiltreLineCorrelation_poupees_2_3.hd
 	2 3)
 	
 ADD_TEST(feTuAssociativeSymmetricalSumNew ${FEATUREEXTRACTION_TESTS}  
@@ -206,8 +206,8 @@ otbLineCorrelationDetectorLinear.cxx
 otbLineCorrelationDetector.cxx
 otbAssociativeSymmetricalSumNew.cxx
 otbAssociativeSymmetricalSum.cxx
-otbAssymetricFusionOfLineDetectorNew.cxx
-otbAssymetricFusionOfLineDetector.cxx
+otbAssymmetricFusionOfLineDetectorNew.cxx
+otbAssymmetricFusionOfLineDetector.cxx
 otbHarrisImage.cxx
 otbMultiplyByScalarImageTest.cxx
 otbThresholdImageToPointSetTest.cxx
diff --git a/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetector.cxx b/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetector.cxx
index 070d9664e6775a9656fbddcfdd5e79acf599a77e..aa223f270ed6475e8893a7e22bf928b3950529b5 100755
--- a/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetector.cxx
+++ b/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetector.cxx
@@ -5,7 +5,7 @@
   Language  :   C++
   Date      :   29 mars 2006
   Version   :   
-  Role      : Test du filtre composite AssymetricFusionOfLineDetector  
+  Role      : Test du filtre composite AssymmetricFusionOfLineDetector  
   $Id$
 
 =========================================================================*/
@@ -21,9 +21,9 @@
 
 #include "otbImageFileReader.h"
 #include "otbImageFileWriter.h"
-#include "otbAssymetricFusionOfLineDetectorImageFilter.h"
+#include "otbAssymmetricFusionOfLineDetectorImageFilter.h"
 
-int otbAssymetricFusionOfLineDetector( int argc, char ** argv )
+int otbAssymmetricFusionOfLineDetector( int argc, char ** argv )
 {
   try 
     { 
@@ -47,7 +47,7 @@ int otbAssymetricFusionOfLineDetector( int argc, char ** argv )
 
         typedef itk::LinearInterpolateImageFunction< InputImageType, double >	InterpolatorType;
 	
-        typedef otb::AssymetricFusionOfLineDetectorImageFilter< InputImageType, OutputImageType, InterpolatorType >   FilterType;
+        typedef otb::AssymmetricFusionOfLineDetectorImageFilter< InputImageType, OutputImageType, InterpolatorType >   FilterType;
   
         FilterType::Pointer FilterAssSymSum = FilterType::New();
         
diff --git a/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetectorNew.cxx b/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetectorNew.cxx
index b7107cb0d5ef3310379875dfd0e317565444c15c..5a5e4dc224159df9549636aca6bc25ca413a26c7 100755
--- a/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetectorNew.cxx
+++ b/Testing/Code/FeatureExtraction/otbAssymetricFusionOfLineDetectorNew.cxx
@@ -5,7 +5,7 @@
   Language  :   C++
   Date      :   29 mars 2006
   Version   :   
-  Role      : Test d'instanciation du filtre composite AssymetricFusionOfLineDetector  
+  Role      : Test d'instanciation du filtre composite AssymmetricFusionOfLineDetector  
   $Id$
 
 =========================================================================*/
@@ -24,9 +24,9 @@
 #include "otbImageFileWriter.h"
 
 
-#include "otbAssymetricFusionOfLineDetectorImageFilter.h"
+#include "otbAssymmetricFusionOfLineDetectorImageFilter.h"
 
-int otbAssymetricFusionOfLineDetectorNew( int argc, char ** argv )
+int otbAssymmetricFusionOfLineDetectorNew( int argc, char ** argv )
 {
   try 
     { 
@@ -50,7 +50,7 @@ int otbAssymetricFusionOfLineDetectorNew( int argc, char ** argv )
 
         typedef itk::LinearInterpolateImageFunction< InputImageType, double >	InterpolatorType;
 	
-        typedef otb::AssymetricFusionOfLineDetectorImageFilter< InputImageType, OutputImageType, InterpolatorType >   FilterType;
+        typedef otb::AssymmetricFusionOfLineDetectorImageFilter< InputImageType, OutputImageType, InterpolatorType >   FilterType;
   
         FilterType::Pointer FilterAssSymSum = FilterType::New();
         
diff --git a/Testing/Code/FeatureExtraction/otbFeatureExtractionTests.cxx b/Testing/Code/FeatureExtraction/otbFeatureExtractionTests.cxx
index f7eedf24536f58bcc8a18417c3f37a731821c488..6f2e134660174c31b1130380512ae6bbc717747b 100755
--- a/Testing/Code/FeatureExtraction/otbFeatureExtractionTests.cxx
+++ b/Testing/Code/FeatureExtraction/otbFeatureExtractionTests.cxx
@@ -35,8 +35,8 @@ REGISTER_TEST(otbLineCorrelationDetectorLinear);
 REGISTER_TEST(otbLineCorrelationDetector);
 REGISTER_TEST(otbAssociativeSymmetricalSumNew);
 REGISTER_TEST(otbAssociativeSymmetricalSum);
-REGISTER_TEST(otbAssymetricFusionOfLineDetectorNew);
-REGISTER_TEST(otbAssymetricFusionOfLineDetector);
+REGISTER_TEST(otbAssymmetricFusionOfLineDetectorNew);
+REGISTER_TEST(otbAssymmetricFusionOfLineDetector);
 REGISTER_TEST(otbHarrisImage);
 REGISTER_TEST(otbMultiplyByScalarImageFilterTest);
 REGISTER_TEST(otbThresholdImageToPointSetTest);