diff --git a/python/lsst/ap/verify/workspace.py b/python/lsst/ap/verify/workspace.py index 4797007..6fc04ca 100644 --- a/python/lsst/ap/verify/workspace.py +++ b/python/lsst/ap/verify/workspace.py @@ -84,7 +84,7 @@ def __eq__(self, other): """Test whether two workspaces are of the same type and have the same location. """ - return type(self) == type(other) and self.workDir == other.workDir + return type(self) is type(other) and self.workDir == other.workDir def __repr__(self): """A string representation that can be used to reconstruct the Workspace.