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
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2019-08-22 15:17:40 +0300
committerJaime van Kessel <nallath@gmail.com>2019-08-22 15:17:40 +0300
commit73c6676673d6a8f9411141277c99377ad96efcb1 (patch)
tree074abf9f4e6a411b5a043f8130bb78122f40156f /tests/PrinterOutput
parent561a3e53e5e60230c8a848debac0cea74807767a (diff)
Added missing test for camera URL
Diffstat (limited to 'tests/PrinterOutput')
-rw-r--r--tests/PrinterOutput/Models/TestPrinterOutputModel.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/PrinterOutput/Models/TestPrinterOutputModel.py b/tests/PrinterOutput/Models/TestPrinterOutputModel.py
index 3fdb61adbd..577a27bd6f 100644
--- a/tests/PrinterOutput/Models/TestPrinterOutputModel.py
+++ b/tests/PrinterOutput/Models/TestPrinterOutputModel.py
@@ -10,6 +10,7 @@ from cura.PrinterOutput.Models.PrinterOutputModel import PrinterOutputModel
test_validate_data_get_set = [
{"attribute": "name", "value": "YAY"},
{"attribute": "targetBedTemperature", "value": 192},
+ {"attribute": "cameraUrl", "value": "YAY!"}
]
test_validate_data_get_update = [
@@ -22,6 +23,7 @@ test_validate_data_get_update = [
{"attribute": "targetBedTemperature", "value": 9001},
{"attribute": "activePrintJob", "value": PrintJobOutputModel(MagicMock())},
{"attribute": "state", "value": "BEEPBOOP"},
+
]