From: Arran Cudbard-Bell Date: Sat, 14 Sep 2019 16:06:55 +0000 (-0500) Subject: Invert test pass/fail calls X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9fa67670f29422ca9f17ec0848ab76492c2e2de;p=thirdparty%2Ffreeradius-server.git Invert test pass/fail calls --- diff --git a/src/tests/modules/python/auth_with_shared_storage.unlang b/src/tests/modules/python/auth_with_shared_storage.unlang index 155ddbc14dc..9e55880a82a 100644 --- a/src/tests/modules/python/auth_with_shared_storage.unlang +++ b/src/tests/modules/python/auth_with_shared_storage.unlang @@ -9,7 +9,7 @@ if (noop) { # Should return ok (shared variable set) pmod_shared_storage if (ok) { - test_fail -} else { test_pass +} else { + test_fail }