1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

ctdb-tests: Fix a typo

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13520

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
(cherry picked from commit 6f5ed2b8b829e01fc675537e47095868ff8b5aa2)
This commit is contained in:
Amitay Isaacs 2018-07-19 17:41:07 +10:00 committed by Karolin Seeger
parent 0733f13398
commit 23e4131519

View File

@ -109,5 +109,5 @@ test_takeover_helper ()
unit_test_notrace takeover_helper_format_outfd
_ret=$?
rm "$takeover_helper_out"
[ $? -eq 0 ] || exit $?
[ $_ret -eq 0 ] || exit $_ret
}