~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_version.py

  • Committer: Gordon Tyler
  • Date: 2009-11-30 21:57:23 UTC
  • mto: (4870.1.1 integration2)
  • mto: This revision was merged to the branch mainline in revision 4871.
  • Revision ID: gordon@doxxx.net-20091130215723-avxll8vimapsz85v
Tweaked assert at Martin's suggestion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        # contains a "guessed" path to the python DLL, so we test that
62
62
        # the path actually exists
63
63
        m = re.search(r"Python interpreter: (.*) [0-9]", out)
64
 
        self.assertTrue(not m is None)
 
64
        self.assertIsNot(m, None)
65
65
        self.failUnlessExists(m.group(1))
66
66
 
67
67
    def test_version_short(self):