tests/utils/utils.sh: bt_diff(): remove useless `ret` var. and `return`
[babeltrace.git] / tests / utils / utils.sh
index 28361a639a1c23fe52c6bc9915316e0cf2eb67da..739ec225b1b5345c24a5bde6ca29ba825287afc8 100644 (file)
@@ -249,11 +249,8 @@ bt_cli() {
 bt_diff() {
        local -r expected_file="$1"
        local -r actual_file="$2"
-       local ret=0
 
        diff -u <(bt_remove_cr_inline "$expected_file") <(bt_remove_cr_inline "$actual_file") 1>&2
-
-       return $?
 }
 
 # Checks the difference between:
This page took 0.023583 seconds and 4 git commands to generate.