]> git.phdru.name Git - mimedecode.git/blobdiff - test/test_all
Split mimedecode.py into a mimedecode library and a small script
[mimedecode.git] / test / test_all
index 1074273b44cc78328a437ac1fb10cfc306872b1f..02329d56776fd37631558e53aab9dab50ad1a5b5 100755 (executable)
@@ -30,7 +30,7 @@ test1() {
    fi
    shift
 
-   $PYTHON ../mimedecode.py -H test -f utf-8 "$@" input/"$infile" >tmp/"$expfile" || return 1
+   mimedecode -H test -f utf-8 "$@" input/"$infile" >tmp/"$expfile" || return 1
    if cmp -s expected/"$expfile" tmp/"$expfile"; then
       rm tmp/"$expfile" && return 0 || return 1
    else