summaryrefslogtreecommitdiff
path: root/tests/fate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fate.sh')
-rwxr-xr-xtests/fate.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/fate.sh b/tests/fate.sh
index 56729d88bc..6f0e0fffcb 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -29,7 +29,6 @@ checkout(){
case "$repo" in
file:*|/*) src="${repo#file:}" ;;
git:*) git clone "$repo" "$src" ;;
- svn:*) svn co "$repo" "$src" ;;
esac
}
@@ -37,7 +36,6 @@ update()(
cd ${src} || return
case "$repo" in
git:*) git pull ;;
- svn:*) svn up ;;
esac
)