2
0
mirror of https://github.com/deajan/osync synced 2024-11-19 03:25:37 +00:00

Fixing softdel cleanup test...Again

This commit is contained in:
deajan 2016-11-22 08:55:51 +01:00
parent 23bb0ac804
commit 2fd60182c0

View File

@ -526,7 +526,7 @@ function test_softdeletion_cleanup () {
[ -f "$file.new" ]
assertEquals "New softdeleted / backed up file [$file.new] exists." "0" $?
if [ "$TRAVIS_RUN" == true ] && [ "$LOCAL_OS" == "BSD" ] && [ "$LOCAL_OS" == "MacOSX" ]; then
if [ "$TRAVIS_RUN" == true ] || [ "$LOCAL_OS" == "BSD" ] || [ "$LOCAL_OS" == "MacOSX" ]; then
[ ! -f "$file.old" ]
assertEquals "Old softdeleted / backed up file [$file.old] is deleted permanently." "0" $?
else