convert long->string in testcase.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@997925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2010-09-16 21:01:03 +00:00
parent f943cc83b2
commit 6f67c88603
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public class TestSetParameter extends SingleEMFTestCase {
.setParameter(2, "Some City")
.setParameter(3, "Some Country")
.setParameter(4, "Some Street")
.setParameter(5, System.currentTimeMillis()%10000)
.setParameter(5, String.valueOf(System.currentTimeMillis()%10000))
.executeUpdate();
em.getTransaction().commit();
assertEquals(1, count);