Better internal name.
diff --git a/src/test/java/org/apache/commons/lang3/concurrent/UncheckedFutureTest.java b/src/test/java/org/apache/commons/lang3/concurrent/UncheckedFutureTest.java
index 47a478f..f275344 100644
--- a/src/test/java/org/apache/commons/lang3/concurrent/UncheckedFutureTest.java
+++ b/src/test/java/org/apache/commons/lang3/concurrent/UncheckedFutureTest.java
@@ -38,16 +38,16 @@
 
     private static class TestFuture<V> implements Future<V> {
 
-        private final V get;
+        private final V value;
         private final Exception exception;
 
         TestFuture(final Exception throwable) {
-            this.get = null;
+            this.value = null;
             this.exception = throwable;
         }
 
-        TestFuture(final V get) {
-            this.get = get;
+        TestFuture(final V value) {
+            this.value = value;
             this.exception = null;
         }
 
@@ -66,13 +66,13 @@
         @Override
         public V get() throws InterruptedException, ExecutionException {
             checkExecutionException();
-            return get;
+            return value;
         }
 
         @Override
         public V get(final long timeout, final TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
             checkExecutionException();
-            return get;
+            return value;
         }
 
         @Override