diff tests/example.py @ 23:73e72a764c3a

fix bool parser, i hope
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 26 Mar 2012 15:14:26 -0700
parents f6c3f91af7f2
children a8013bd3126a
line wrap: on
line diff
--- a/tests/example.py	Mon Mar 26 14:51:44 2012 -0700
+++ b/tests/example.py	Mon Mar 26 15:14:26 2012 -0700
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
 from configuration import Configuration
 
 class ExampleConfiguration(Configuration):
@@ -12,7 +14,7 @@
                          'flags': ['-e', '--executablePath'],
                          'help': 'path to firefox'},
         'develop': {'help': "useful for running tests on a developer machine. Creates a local webserver and doesn't upload to the graph servers.",
-                    'type': bool}
+                    'type': bool},
         'test_timeout': {'type': int,
                          'help': "Time to wait for the browser to output to the log file",
                          'default': 1200},