Browse Source

[2934] corrected a typo

JINMEI Tatuya 12 years ago
parent
commit
72e89527ef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/xfrout/tests/xfrout_test.py.in

+ 1 - 1
src/bin/xfrout/tests/xfrout_test.py.in

@@ -290,7 +290,7 @@ class TestXfroutSessionBase(unittest.TestCase):
 
     def setUp(self):
         # xfrout.make_blocking won't work with faked socket, and we'd like to
-        # examine how it's called, so we replace it without our mock.
+        # examine how it's called, so we replace it with our mock.
         self.__orig_make_blocking = xfrout.make_blocking
         self._make_blocking_history = []
         xfrout.make_blocking = lambda x, y: self.__make_blocking(x, y)