commit | c5d419e34fdd11a61a1c29c9f81ff6410fe6bf8b | [log] [tgz] |
---|---|---|
author | Stas Negara <[email protected]> | Thu Jan 22 14:04:12 2015 -0800 |
committer | Stas Negara <[email protected]> | Fri Feb 06 13:06:20 2015 -0800 |
tree | fbb44fab79de09d8c06f20c0d7830967e0498041 | |
parent | 9b0d46cb965fe5062957a2ff4b14a425bff89054 [diff] |
Stopped comparing hash for equality of cloud test configurations. Change-Id: Ic4f9f39b7c24ed32215802dfcd7bb707cf412c71
diff --git a/src/com/google/gct/testing/CloudTestConfigurationImpl.java b/src/com/google/gct/testing/CloudTestConfigurationImpl.java index e8f939b..f5994e9 100644 --- a/src/com/google/gct/testing/CloudTestConfigurationImpl.java +++ b/src/com/google/gct/testing/CloudTestConfigurationImpl.java
@@ -332,7 +332,8 @@ CloudTestConfigurationImpl that = (CloudTestConfigurationImpl)o; - return getHash() == that.getHash() && id == that.id; + //return getHash() == that.getHash() && id == that.id; + return id == that.id; } @Override