/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to tests/test_annotate_config.py

  • Committer: Jelmer Vernooij
  • Date: 2011-02-18 13:01:03 UTC
  • Revision ID: jelmer@samba.org-20110218130103-fiyk203auk28thpn
Remove some unused imports, fix some formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    gannotate,
26
26
    )
27
27
 
28
 
 
29
28
class TestConfig(tests.TestCaseInTempDir):
30
29
 
31
30
    def setUp(self):
32
 
        # Create an instance before the env is changed so that
33
 
        # icon lookups work.
 
31
        super(TestConfig, self).setUp()
34
32
        self.window = gannotate.GAnnotateWindow()
35
 
        super(TestConfig, self).setUp()
36
 
 
37
 
    def tearDown(self):
38
 
        self.window.destroy()
39
 
        super(TestConfig, self).tearDown()
40
33
 
41
34
    def test_create_initial_config(self):
42
35
        """We can create a config even without a prior conf file"""