mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 04:54:04 -06:00
Align parameters better for overview
Contributes to issue CURA-3497.
This commit is contained in:
parent
9d9832f8e2
commit
2eed596280
1 changed files with 5 additions and 5 deletions
|
@ -31,12 +31,12 @@ def findSomeContainers(container_id = "*", container_type = None, type = None, c
|
|||
return unittest.mock.MagicMock()
|
||||
|
||||
## Tests whether the user changes are being read properly from a global stack.
|
||||
@pytest.mark.parametrize("filename, user_changes_id", [
|
||||
("Global.global.cfg", "empty"),
|
||||
("Global.stack.cfg", "empty"),
|
||||
@pytest.mark.parametrize("filename, user_changes_id", [
|
||||
("Global.global.cfg", "empty"),
|
||||
("Global.stack.cfg", "empty"),
|
||||
("MachineLegacy.stack.cfg", "empty"),
|
||||
("OnlyUser.global.cfg", "some_instance"), #This one does have a user profile.
|
||||
("Complete.global.cfg", "some_user_changes")
|
||||
("OnlyUser.global.cfg", "some_instance"), #This one does have a user profile.
|
||||
("Complete.global.cfg", "some_user_changes")
|
||||
])
|
||||
def test_deserializeUserChanges(filename, user_changes_id, container_registry):
|
||||
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "stacks", filename)) as file_handle:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue