You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2009/06/16 09:58:39 UTC

svn commit: r785105 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java

Author: kristwaa
Date: Tue Jun 16 07:58:39 2009
New Revision: 785105

URL: http://svn.apache.org/viewvc?rev=785105&view=rev
Log:
DERBY-4245: Fixed two spelling errors in the test.
Patch file: n/a

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java?rev=785105&r1=785104&r2=785105&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/LobSortTest.java Tue Jun 16 07:58:39 2009
@@ -158,7 +158,7 @@
         }
         rs.close();
         rs = stmt.executeQuery(sql);
-        // Get the BLOB value length though Blob.length
+        // Get the BLOB value length through Blob.length
         while (rs.next()) {
             assertEquals(rs.getInt(1), (int)rs.getBlob(2).length());
         }
@@ -186,7 +186,7 @@
         }
         rs.close();
         rs = stmt.executeQuery(sql);
-        // Get the CLOB value length though Clob.length
+        // Get the CLOB value length through Clob.length
         while (rs.next()) {
             assertEquals(rs.getInt(1), (int)rs.getClob(2).length());
         }