Index: dashboard/dashboard/pinpoint/models/quest/find_isolate.py |
diff --git a/dashboard/dashboard/pinpoint/models/quest/find_isolate.py b/dashboard/dashboard/pinpoint/models/quest/find_isolate.py |
index 32078c381ce9f9301d4e9bf9bd755a6a9d63ad58..71ea3041dbcd5ffb807659b799f0dc30c3bda18b 100644 |
--- a/dashboard/dashboard/pinpoint/models/quest/find_isolate.py |
+++ b/dashboard/dashboard/pinpoint/models/quest/find_isolate.py |
@@ -20,6 +20,10 @@ class FindIsolate(quest.Quest): |
def __init__(self, configuration): |
self._builder_name = _BuilderNameForConfiguration(configuration) |
+ def __eq__(self, other): |
+ return (isinstance(other, type(self)) and |
+ self._builder_name == other._builder_name) |
+ |
def __str__(self): |
return 'Build on ' + self._builder_name |