summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorTimothy Arceri <tarceri@itsqueeze.com>2017-05-19 16:04:59 +1000
committerTimothy Arceri <tarceri@itsqueeze.com>2017-05-25 13:17:07 +1000
commit6d218dd392e60318803b9596e35d2efae9b76868 (patch)
treea56685aec70e002de2c9351b0990a711ef2ee61a /unittests
parent0e0e3ff48f19759049ee7e7b12b88df0c16feb86 (diff)
test_gleantest: make sure --quick is returned when set in GLOBAL_PARAMS
Diffstat (limited to 'unittests')
-rw-r--r--unittests/framework/test/test_gleantest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/framework/test/test_gleantest.py b/unittests/framework/test/test_gleantest.py
index b9122d25c..3ff2b8c8c 100644
--- a/unittests/framework/test/test_gleantest.py
+++ b/unittests/framework/test/test_gleantest.py
@@ -53,6 +53,7 @@ def test_GLOBAL_PARAMS_assignment():
GleanTest.GLOBAL_PARAMS = ['--quick']
test2 = GleanTest('basic')
assert test1.command == test2.command
+ assert '--quick' in test1.command
def test_global_params_setter():