summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-09-29 03:11:11 +0000
committerBruce Momjian <bruce@momjian.us>2001-09-29 03:11:11 +0000
commit850ba416775336db441caa8f9f1e2b0d5e6c72a5 (patch)
tree94028977ac327f5c2d0432b4d2ce2881d949a7e8
parent40cd81cff4c367f3d601143a4e631a1b6d130d6c (diff)
A couple of lines were missing from my last patch - this one fixes things.
Liam Stewart
-rw-r--r--src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java b/src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java
index 2d4051cef80..37be09a2508 100644
--- a/src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java
+++ b/src/interfaces/jdbc/org/postgresql/test/jdbc2/TimestampTest.java
@@ -5,7 +5,7 @@ import junit.framework.TestCase;
import java.sql.*;
/**
- * $Id: TimestampTest.java,v 1.3 2001/09/23 04:11:14 momjian Exp $
+ * $Id: TimestampTest.java,v 1.4 2001/09/29 03:11:11 momjian Exp $
*
* This has been the most controversial pair of methods since 6.5 was released!
*
@@ -129,4 +129,6 @@ public class TimestampTest extends TestCase {
JDBC2Tests.fix(h, 2) + ":" +
JDBC2Tests.fix(mn, 2) + ":" +
JDBC2Tests.fix(se, 2) + "." +
+ JDBC2Tests.fix(f, 9));
+ }
}