~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

  • Committer: Vincent Ladeuil
  • Date: 2011-08-09 10:02:34 UTC
  • mto: This revision was merged to the branch mainline in revision 6059.
  • Revision ID: v.ladeuil+lp@free.fr-20110809100234-74gcwshwv4hsgzo2
Fix typos caught by jelmer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2263
2263
    def test_help_is_set(self):
2264
2264
        option_help = self.registry.get_help(self.option_name)
2265
2265
        self.assertNotEquals(None, option_help)
2266
 
        # Come on, think about the user, he really wants to know whst the
 
2266
        # Come on, think about the user, he really wants to know what the
2267
2267
        # option is about
 
2268
        self.assertIsNot(None, option_help)
2268
2269
        self.assertNotEquals('', option_help)
2269
2270
 
2270
2271