From 0f1d3aa124affbb3dbe5c87531bf3dee475097bf Mon Sep 17 00:00:00 2001 From: "SND\\EreTIk_cp" <SND\EreTIk_cp@9b283d60-5439-405e-af05-b73fd8c4d996> Date: Tue, 27 Dec 2011 22:42:03 +0000 Subject: [PATCH] [0.1.x] ~fixed comment git-svn-id: https://pykd.svn.codeplex.com/svn@72724 9b283d60-5439-405e-af05-b73fd8c4d996 --- test/scripts/clienttest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/scripts/clienttest.py b/test/scripts/clienttest.py index 62f6010..e2341a7 100644 --- a/test/scripts/clienttest.py +++ b/test/scripts/clienttest.py @@ -14,11 +14,11 @@ class DbgClientTest( unittest.TestCase ): self.assertFalse( pykd.isKernelDebugging() ) def testNumberProcessors( self ): - """Number of processors mus be >= 0""" + """Number of processors can not be 0""" self.assertNotEqual( 0, pykd.getNumberProcessors() ) def testPageSize( self ): - """Size of memory page mus be >= 4kb""" + """Size of memory page must be >= 4kb""" self.assertTrue( pykd.getPageSize() >= 4*1024 ) def testIsDumpAnalyzing( self ):