~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_plugins.py

  • Committer: Vincent Ladeuil
  • Date: 2009-05-05 15:31:34 UTC
  • mto: (4343.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4344.
  • Revision ID: v.ladeuil+lp@free.fr-20090505153134-q4bp4is9gywsmzrv
Clean up test for log formats.

* bzrlib/tests/blackbox/test_logformats.py:
Update tests to actual style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
633
633
        path = plugin.get_standard_plugins_path()
634
634
        self.assertEqual(plugin.get_default_plugin_path(), path[0])
635
635
        for directory in path:
636
 
            self.assertNotContainsRe(directory, r'\\/$')
 
636
            self.assertNotContainsRe(r'\\/$', directory)
637
637
        try:
638
638
            from distutils.sysconfig import get_python_lib
639
639
        except ImportError: