From 14dc814e2a120ac39fab374f322675424fa8dddf Mon Sep 17 00:00:00 2001 From: Alexander Kryklia Date: Tue, 22 Oct 2013 12:31:28 +0300 Subject: [PATCH] Fix typo --- common/lib/xmodule/xmodule/tests/test_xml_module.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/lib/xmodule/xmodule/tests/test_xml_module.py b/common/lib/xmodule/xmodule/tests/test_xml_module.py index a6be03d82e..b649397df4 100644 --- a/common/lib/xmodule/xmodule/tests/test_xml_module.py +++ b/common/lib/xmodule/xmodule/tests/test_xml_module.py @@ -396,15 +396,15 @@ class TestDeserializeRelativeTime(TestDeserialize): def test_deserialize(self): """ - There is nono check for + There is no check for self.assertDeserializeEqual('10:20:30', '10:20:30') self.assertDeserializeNonString() because these two tests work only because json.loads fires exception, - and xml_module.deserialized_field catches it and returns same value + and xml_module.deserialized_field catches it and returns same value, so there is nothing field-specific here. - But othere modules do it, so I'm leaving this comment for PR reviewers. + But other modules do it, so I'm leaving this comment for PR reviewers. """ # test that from_json produces no exceptions