]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Invert test pass/fail calls
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 14 Sep 2019 16:06:55 +0000 (11:06 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sat, 14 Sep 2019 16:07:01 +0000 (11:07 -0500)
src/tests/modules/python/auth_with_shared_storage.unlang

index 155ddbc14dc5c48d97baf156a2fcc10ae8ca3c75..9e55880a82ad54299d9d9bdbc18b83b8c7f270e0 100644 (file)
@@ -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
 }