summaryrefslogtreecommitdiff
path: root/client/test.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-09 12:25:19 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-09 12:25:19 -0400
commit4bb5053efde9f40acc9be3033c517bf391e01eca (patch)
tree44fb580061ccb33467432f0951ad6b0427face0e /client/test.py
parent48bbbed76ce8b386890ce3610b8d5a6bc023daba (diff)
downloadjasper-client-4bb5053efde9f40acc9be3033c517bf391e01eca.tar.gz
jasper-client-4bb5053efde9f40acc9be3033c517bf391e01eca.zip
Better info for test profile
Diffstat (limited to 'client/test.py')
-rw-r--r--client/test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/test.py b/client/test.py
index 9734769..54aeb49 100644
--- a/client/test.py
+++ b/client/test.py
@@ -14,7 +14,8 @@ import brain
DEFAULT_PROFILE = {
'prefers_email': False,
- 'location': 'travis',
+ 'location': '08544',
+ 'timezone': 'US/Eastern',
'phone_number': '012344321'
}
@@ -203,7 +204,7 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Test suite for the Jasper client code.')
parser.add_argument('--light', action='store_true',
- help="runs a subset of the tests (only requires Python dependencies)")
+ help='runs a subset of the tests (only requires Python dependencies)')
args = parser.parse_args()
test_cases = [TestBrain, TestModules]