diff tests/test-convert-p4-filetypes @ 16497:c326fe884daa stable

tests: avoid tab indent on all kinds of lines of sh commands
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 23 Apr 2012 01:56:48 +0200
parents 3a1f29b63b9f
children
line wrap: on
line diff
--- a/tests/test-convert-p4-filetypes	Mon Apr 23 01:56:48 2012 +0200
+++ b/tests/test-convert-p4-filetypes	Mon Apr 23 01:56:48 2012 +0200
@@ -44,7 +44,7 @@
    T2=`echo $T | tr [:upper:] [:lower:]`
    case $T in
       apple)
-	 ;;
+         ;;
       symlink*)
          echo "this is target $T" >target_$T2
          ln -s target_$T file_$T2
@@ -52,7 +52,7 @@
          p4 add -t $T file_$T2
          ;;
       binary*)
-	 python -c "file('file_$T2', 'wb').write('this is $T')"
+         python -c "file('file_$T2', 'wb').write('this is $T')"
          p4 add -t $T file_$T2
          ;;
       *)