From 6dc7c79edb4d2b4e894423b98af1a73941e01b3b Mon Sep 17 00:00:00 2001 From: melissaml Date: Fri, 23 Mar 2018 07:59:06 +0800 Subject: [PATCH] fix a typo in documentation Change-Id: Ib7db8c3e75eee9651acce471cdc5eb7b05b3afd9 --- mox3/tests/test_mox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mox3/tests/test_mox.py b/mox3/tests/test_mox.py index 0118ab2..1b1883b 100644 --- a/mox3/tests/test_mox.py +++ b/mox3/tests/test_mox.py @@ -2255,7 +2255,7 @@ class MyTestCase(testtools.TestCase): self.another_critical_variable = 42 def testMethodOverride(self): - """Should be properly overriden in a derived class.""" + """Should be properly overridden in a derived class.""" self.assertEqual(42, self.another_critical_variable) self.another_critical_variable += 1