From 751c027ac786f490c51ceabf125014a0883755ee Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 17 Jun 2024 11:39:28 -0500 Subject: [PATCH] update comment --- test/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/__init__.py b/test/__init__.py index 697bab9317..f89363a33c 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -683,7 +683,7 @@ def require_auth(self, func): ) def require_no_fips(self, func): - """Run a test only if the server is running with auth enabled.""" + """Run a test only if the host does not have FIPS enabled.""" return self._require( lambda: not self.fips_enabled, "Test cannot run on a FIPS-enabled host", func=func )