Skip to content

Commit

Permalink
Fix non-parameterized class in TestUniqueId.
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Sigoure <tsuna@stumbleupon.com>
  • Loading branch information
Thomas Sanchez authored and tsuna committed Aug 24, 2011
1 parent c97fa42 commit ccb32a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uid/TestUniqueId.java
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ public void getOrCreateIdAssignIdWithRaceCondition() {
when(client.get(anyGet()))
.thenReturn(d);

final Answer the_race = new Answer<byte[]>() {
final Answer<byte[]> the_race = new Answer<byte[]>() {
public byte[] answer(final InvocationOnMock unused_invocation) {
// While answering A's first Get, B doest a full getOrCreateId.
assertArrayEquals(id, uid_b.getOrCreateId("foo"));
Expand Down

0 comments on commit ccb32a0

Please sign in to comment.