/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 breezy/tests/test_strace.py

  • Committer: Jelmer Vernooij
  • Date: 2018-04-02 00:52:27 UTC
  • mfrom: (6939 work)
  • mto: This revision was merged to the branch mainline in revision 7274.
  • Revision ID: jelmer@jelmer.uk-20180402005227-pecflp1mvdjrjqd6
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
 
81
81
        def function():
82
82
            return "foo"
83
 
        result, strace_result = self.strace_detailed_or_skip(function,[], {},
 
83
        result, strace_result = self.strace_detailed_or_skip(function, [], {},
84
84
                                                follow_children=False)
85
85
        self.assertEqual("foo", result)
86
86
        self.assertIsInstance(strace_result, StraceResult)