diff options
author | Mike Gilbert <floppym@gentoo.org> | 2022-04-19 17:31:52 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2022-04-19 17:31:52 -0400 |
commit | 74780679b37fc00aa39804d8cc3a90abf6e2c745 (patch) | |
tree | 5d236250514f76e46bf5adeabb0dffea57e9a18b /eclass | |
parent | scripts/bootstrap.sh: maintainer = releng (diff) | |
download | gentoo-74780679b37fc00aa39804d8cc3a90abf6e2c745.tar.gz gentoo-74780679b37fc00aa39804d8cc3a90abf6e2c745.tar.bz2 gentoo-74780679b37fc00aa39804d8cc3a90abf6e2c745.zip |
eclass/tests/qmail.sh: eend and return should be separate statements
Closes: https://bugs.gentoo.org/839189
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass')
-rwxr-xr-x | eclass/tests/qmail.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/tests/qmail.sh b/eclass/tests/qmail.sh index 8cf0abdae1a6..16e52741c23c 100755 --- a/eclass/tests/qmail.sh +++ b/eclass/tests/qmail.sh @@ -13,7 +13,8 @@ test_low_numbers() { for i in $(seq 0 6); do if is_prime ${i}; then - return tend 1 "${i} badly accepted" + tend 1 "${i} badly accepted" + return fi done |