add cast fix intermittent compilation error from junit upgrade

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/branches/solr@923401 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2010-03-15 19:34:30 +00:00
parent 189859c05b
commit 2d6439447f
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public class TestSqlEntityProcessor {
break;
count++;
}
Assert.assertEquals(2, local.get());
Assert.assertEquals(2, (int) local.get());
Assert.assertEquals(4, count);
}