From 52d6c074f5ebe2354347d5f77a969a0f4bfa9308 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 11 Apr 2017 17:18:14 +0200 Subject: [PATCH] Align parameters of test_setPropertyUser For readability. Contributes to issue CURA-3497. --- tests/Settings/TestGlobalStack.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Settings/TestGlobalStack.py b/tests/Settings/TestGlobalStack.py index bac69cee9f..2db27e68b6 100644 --- a/tests/Settings/TestGlobalStack.py +++ b/tests/Settings/TestGlobalStack.py @@ -537,9 +537,9 @@ def test_setNextStack(global_stack): ## Tests setting properties directly on the global stack. @pytest.mark.parametrize("key, property, value, output_value", [ - ("layer_height", "value", 0.1337, 0.1337), - ("foo", "value", 100, 100), - ("support_enabled", "value", True, True), + ("layer_height", "value", 0.1337, 0.1337), + ("foo", "value", 100, 100), + ("support_enabled", "value", True, True), ("layer_height", "default_value", 0.1337, 0.1337), ("layer_height", "is_bright_pink", "of course", "of course") ])