diff --git a/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java b/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java index f0d092c9..be8d66de 100644 --- a/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java +++ b/src/test/java/com/cedarsoftware/util/convert/ConverterEverythingTest.java @@ -708,7 +708,7 @@ private void verifyTestPair(Class sourceClass, Class targetClass, Object[] testPair[0] = ((Supplier) testPair[0]).get(); } - // If lambda Supplier function given, execute it and substitute the value into the source location + // If lambda Supplier function given, execute it and substitute the value into the target location if (testPair[1] instanceof Supplier) { testPair[1] = ((Supplier) testPair[1]).get(); }