1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +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>
This commit is contained in:
Amitay Isaacs 2018-07-19 17:41:07 +10:00 committed by Martin Schwenke
parent 65cc36f24d
commit 6f5ed2b8b8

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
}