~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_win32utils.py

  • Committer: Kuno Meyer
  • Date: 2007-07-18 21:52:35 UTC
  • mto: This revision was merged to the branch mainline in revision 2655.
  • Revision ID: kuno.meyer@gmx.ch-20070718215235-nb6fmud5yuv3q9am
Just a typo remained from testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
class _Win32Feature(Feature):
27
27
 
28
28
    def _probe(self):
29
 
        return sys.platform != 'win32'
 
29
        return sys.platform == 'win32'
30
30
    
31
31
    def feature_name(self):
32
32
        return 'Win32 platform'