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:
authorJaime van Kessel <nallath@gmail.com>2020-06-18 19:05:07 +0300
committerJaime van Kessel <nallath@gmail.com>2020-06-18 19:05:07 +0300
commitea0c8ff9bc2b0a51dc098170d33ff4648f97defd (patch)
treec3d42c22eb75b1923ec07c771d6091d901d9b7ea /tests
parentd0a84828ff05299c978553a60a5241edbb550fbf (diff)
Implement setDirty for mockContainer
Diffstat (limited to 'tests')
-rw-r--r--tests/Settings/MockContainer.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Settings/MockContainer.py b/tests/Settings/MockContainer.py
index bb99710ef6..9c20f55405 100644
--- a/tests/Settings/MockContainer.py
+++ b/tests/Settings/MockContainer.py
@@ -153,6 +153,9 @@ class MockContainer(ContainerInterface, UM.PluginObject.PluginObject):
def isDirty(self):
return True
+ def setDirty(self, dirty):
+ pass
+
metaDataChanged = Signal()
propertyChanged = Signal()
containersChanged = Signal()