diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 | 
| commit | 14f1b3e8826ce43b978db93a62d1166055db5394 (patch) | |
| tree | 0a00ad8d3498783fe0193f3b656bca17c4c8697d /packages/Python/lldbsuite/test/example | |
| parent | 4ee8c119c71a06dcad1e0fecc8c675e480e59337 (diff) | |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/example')
| -rw-r--r-- | packages/Python/lldbsuite/test/example/TestSequenceFunctions.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/packages/Python/lldbsuite/test/example/TestSequenceFunctions.py b/packages/Python/lldbsuite/test/example/TestSequenceFunctions.py index a08529300646..8c5fedf58abc 100644 --- a/packages/Python/lldbsuite/test/example/TestSequenceFunctions.py +++ b/packages/Python/lldbsuite/test/example/TestSequenceFunctions.py @@ -4,14 +4,15 @@ import random  import unittest  import traceback +  class SequenceFunctionsTestCase(unittest.TestCase):      def setUp(self): -        #traceback.print_stack() +        # traceback.print_stack()          self.seq = list(range(10))      def tearDown(self): -        #traceback.print_stack() +        # traceback.print_stack()          pass      def test_shuffle(self): | 
