From 4a52a90a4edcc0f25092cf62f9c87ed6b6a35b33 Mon Sep 17 00:00:00 2001 From: Phill Ridout Date: Sat, 24 Jan 2015 10:21:13 +0000 Subject: [PATCH] test fix. Test options in order as per --help --- tests/functional/test_init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_init.py b/tests/functional/test_init.py index 6fc9aa651..a5ec608ef 100644 --- a/tests/functional/test_init.py +++ b/tests/functional/test_init.py @@ -119,7 +119,7 @@ class TestInit(TestCase, TestMixin): Test that parse_options parses short options correctly """ # GIVEN: A list of vaild short options - options = ['-e', 'extra', '-l', 'debug', 'qt', '-pd', 'args', '-s', 'style'] + options = ['-e', '-l', 'debug', '-pd', '-s', 'style', 'extra', 'qt', 'args'] # WHEN: Calling parse_options resluts = parse_options(options)