Browse Source

Add missing isDirty function

CURA-6600
Jaime van Kessel 5 years ago
parent
commit
784ab6e903
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/Settings/MockContainer.py

+ 3 - 0
tests/Settings/MockContainer.py

@@ -116,6 +116,9 @@ class MockContainer(ContainerInterface, UM.PluginObject.PluginObject):
     def getVersionFromSerialized(cls, serialized):
         raise NotImplementedError()
 
+    def isDirty(self):
+        return True
+
     metaDataChanged = Signal()
     propertyChanged = Signal()
     containersChanged = Signal()