Browse Source

Added missing test for camera URL

Jaime van Kessel 5 years ago
parent
commit
73c6676673
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/PrinterOutput/Models/TestPrinterOutputModel.py

+ 2 - 0
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"},
+
 ]