Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2019-10-22 16:30:19 +0300
committerLipu Fei <lipu.fei815@gmail.com>2019-10-22 16:31:17 +0300
commitf2c66f8d3a4f2734d6a0a8de824bca8cdad039d9 (patch)
treede369c7c1829fa0de7a9aeedc2e5ffb1032b98d7 /tests
parent66005f28f31c343aff697d22ecdbc1d06a6e86c2 (diff)
Fix TestVariantNode
CURA-6921
Diffstat (limited to 'tests')
-rw-r--r--tests/Machines/TestVariantNode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Machines/TestVariantNode.py b/tests/Machines/TestVariantNode.py
index 4e58069be3..bc860058a1 100644
--- a/tests/Machines/TestVariantNode.py
+++ b/tests/Machines/TestVariantNode.py
@@ -16,7 +16,7 @@ instance_container_metadata_dict = {"fdmprinter": {"no_variant": [{"base_file":
material_node_added_test_data = [({"type": "Not a material"}, ["material_1", "material_2"]), # Wrong type
({"type": "material", "base_file": "material_3"}, ["material_1", "material_2"]), # material_3 is on the "NOPE" list.
({"type": "material", "base_file": "material_4", "definition": "machine_3"}, ["material_1", "material_2"]), # Wrong machine
- ({"type": "material", "base_file": "material_4", "definition": "machine_1"}, ["material_1", "material_2"]), # No variant
+ ({"type": "material", "base_file": "material_4", "definition": "machine_1"}, ["material_1", "material_2", "material_4"]), # No variant
({"type": "material", "base_file": "material_4", "definition": "machine_1", "variant_name": "Variant Three"}, ["material_1", "material_2"]), # Wrong variant
({"type": "material", "base_file": "material_4", "definition": "machine_1", "variant_name": "Variant One"}, ["material_1", "material_2", "material_4"])
]