Committed by
Brian O'Connor
Keys based on longs should display in hexadecimal
Change-Id: I45d826a4e8c24271d6689f9438d5eca78f557241
Showing
2 changed files
with
1 additions
and
2 deletions
... | @@ -103,7 +103,7 @@ public class Key { | ... | @@ -103,7 +103,7 @@ public class Key { |
103 | 103 | ||
104 | @Override | 104 | @Override |
105 | public String toString() { | 105 | public String toString() { |
106 | - return Long.toString(key); | 106 | + return "0x" + Long.toHexString(key); |
107 | } | 107 | } |
108 | 108 | ||
109 | @Override | 109 | @Override | ... | ... |
... | @@ -56,7 +56,6 @@ import static org.onosproject.net.NetTestTools.link; | ... | @@ -56,7 +56,6 @@ import static org.onosproject.net.NetTestTools.link; |
56 | /** | 56 | /** |
57 | * Tests for the objective tracker. | 57 | * Tests for the objective tracker. |
58 | */ | 58 | */ |
59 | -@Ignore | ||
60 | public class ObjectiveTrackerTest { | 59 | public class ObjectiveTrackerTest { |
61 | private static final int WAIT_TIMEOUT_SECONDS = 2; | 60 | private static final int WAIT_TIMEOUT_SECONDS = 2; |
62 | private Topology topology; | 61 | private Topology topology; | ... | ... |
-
Please register or login to post a comment