/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_win32utils.py

  • Committer: Gordon Tyler
  • Date: 2010-02-02 06:39:31 UTC
  • mto: (5037.3.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5046.
  • Revision ID: gordon@doxxx.net-20100202063931-n6z2ehfpe10rty9m
Simplified win32utils.command_line_to_argv and made it private since it's no longer used outside of the module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
    def assertCommandLine(self, expected, line, single_quotes_allowed=False):
295
295
        # Strictly speaking we should respect parameter order versus glob
296
296
        # expansions, but it's not really worth the effort here
297
 
        argv = win32utils.command_line_to_argv(line,
 
297
        argv = win32utils._command_line_to_argv(line,
298
298
                single_quotes_allowed=single_quotes_allowed)
299
299
        self.assertEqual(expected, sorted(argv))
300
300