summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java b/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java
index 4e8e339..628fc05 100644
--- a/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java
+++ b/test/src/java/com/healthmarketscience/jackcess/BigIndexTest.java
@@ -198,7 +198,7 @@ public class BigIndexTest extends TestCase {
rand = new Random(42L);
for(int i = 0; i < 50; ++i) {
int nextInt = rand.nextInt(Integer.MAX_VALUE);
- String nextVal = "" + nextInt + extraText;
+ String nextVal = "some prefix " + nextInt + extraText;
if(((i + 1) % 3333) == 0) {
nextVal = null;
}