summaryrefslogtreecommitdiff
path: root/cliapp/settings_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-03-11 18:04:33 +0000
committerLars Wirzenius <liw@liw.fi>2011-03-11 18:04:33 +0000
commit5c1413baa8ad9a8f5c2bcd2d5c6d632224db3675 (patch)
treed92deb351d4988ea1abf638d4fe0dce0ff8a9d8e /cliapp/settings_tests.py
parent7657cdbd5f0e30eafea5fd48b365621d93695fae (diff)
downloadcliapp-5c1413baa8ad9a8f5c2bcd2d5c6d632224db3675.tar.gz
Use Settings in Application.
Diffstat (limited to 'cliapp/settings_tests.py')
-rw-r--r--cliapp/settings_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliapp/settings_tests.py b/cliapp/settings_tests.py
index 8760325..95f1f56 100644
--- a/cliapp/settings_tests.py
+++ b/cliapp/settings_tests.py
@@ -25,7 +25,7 @@ import cliapp
class SettingsTests(unittest.TestCase):
def setUp(self):
- self.settings = cliapp.Settings('1.0')
+ self.settings = cliapp.Settings('appname', '1.0')
def test_creates_option_parser(self):
self.assert_(isinstance(self.settings.parser, optparse.OptionParser))