Parcourir la source

[2617] another editorial fix, in a comment.

JINMEI Tatuya il y a 12 ans
Parent
commit
b6b57fb469
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/bin/msgq/tests/msgq_test.py

+ 1 - 1
src/bin/msgq/tests/msgq_test.py

@@ -719,7 +719,7 @@ class SocketTests(unittest.TestCase):
         # if socket.recv() returns empty data, the result depends on whether
         # there's any preceding data; in the second case below, at least
         # 6 bytes of data will be expected, and the second call to our faked
-        # recv() returns empty data.  In that case it will logged as error.
+        # recv() returns empty data.  In that case it will be logged as error.
         for recv_data in [b'', b'short']:
             self.__sock.recv_result = recv_data
             self.__killed_socket = None