]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spell check, sphnx config change for RHEL9
authorMarcin Godzina <mgodzina@isc.org>
Mon, 27 Jun 2022 16:21:06 +0000 (18:21 +0200)
committerMarcin Godzina <mgodzina@isc.org>
Mon, 27 Jun 2022 16:21:06 +0000 (18:21 +0200)
doc/sphinx/conf.py
src/bin/admin/tests/mysql_tests.sh.in

index 427d07fa77ad98051afc6ff580f8b09867c0b1e1..960f2298163dedda950a5d76bfac6aea73ec1d2a 100644 (file)
@@ -77,7 +77,7 @@ messages_doc = 'kea-messages'
 #
 # This is also used if you do content translation via gettext catalogs.
 # Usually you set "language" from the command line for these cases.
-language = None
+language = "en"
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
index cc2fd3c57b7ece746b6d4e587b86358b05a6b39c..5d65fc0e02bfc78f1217363b0b3b9eefd8ed56b3 100644 (file)
@@ -626,7 +626,7 @@ mysql_upgrade_13_to_14_test() {
         assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
         assert_str_eq '2' "${OUTPUT}" "${query}: expected output %s, returned %s"
 
-        # Artifically change the subnet counter from 2 down to 1.
+        # Artificially change the subnet counter from 2 down to 1.
         query="UPDATE lease${v}_stat SET leases = 1 WHERE subnet_id = 1 AND state = 0"
         run_command \
             mysql_execute "${query}"
@@ -640,7 +640,7 @@ mysql_upgrade_13_to_14_test() {
             assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
             assert_str_eq '2' "${OUTPUT}" "${query}: expected output %s, returned %s"
 
-            # Artifically change the client class counter from 2 down to 1.
+            # Artificially change the client class counter from 2 down to 1.
             query="UPDATE lease${v}_stat_by_client_class SET leases = 1 WHERE client_class = 'foo'"
             run_command \
                 mysql_execute "${query}"
@@ -655,7 +655,7 @@ mysql_upgrade_13_to_14_test() {
         assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
         assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
 
-        # SELECT should finish succesfully and the subnet counter should be 0.
+        # SELECT should finish successfully and the subnet counter should be 0.
         query="SELECT leases FROM lease${v}_stat WHERE subnet_id = 1 AND state = 0 LIMIT 1"
         run_command \
             mysql_execute "${query}"
@@ -663,7 +663,7 @@ mysql_upgrade_13_to_14_test() {
         assert_str_eq '0' "${OUTPUT}" "${query}: expected output %s, returned %s"
 
         if test "${json_supported}" = 1; then
-            # SELECT should finish succesfully and the client class counter should be 0.
+            # SELECT should finish successfully and the client class counter should be 0.
             query="SELECT leases FROM lease${v}_stat_by_client_class WHERE client_class = 'foo' LIMIT 1"
             run_command \
                 mysql_execute "${query}"