summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/sdbc/_XCloseable.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/sdbc/_XCloseable.java')
-rw-r--r--qadevOOo/tests/java/ifc/sdbc/_XCloseable.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/sdbc/_XCloseable.java b/qadevOOo/tests/java/ifc/sdbc/_XCloseable.java
index 131045378cd4..30a8501ccab4 100644
--- a/qadevOOo/tests/java/ifc/sdbc/_XCloseable.java
+++ b/qadevOOo/tests/java/ifc/sdbc/_XCloseable.java
@@ -58,7 +58,7 @@ public class _XCloseable extends MultiMethodTest {
oObj.close();
res = true;
} catch (SQLException e) {
- log.println("Unexpected SQL Exception occured:" + e) ;
+ log.println("Unexpected SQL Exception occurred:" + e) ;
res = false;
}
@@ -68,10 +68,10 @@ public class _XCloseable extends MultiMethodTest {
if (resSet != null) {
try {
resSet.first();
- log.println("Expected SQLException not occured !");
+ log.println("Expected SQLException not occurred !");
res = false;
} catch(SQLException e) {
- log.println("Expected SQLException occured");
+ log.println("Expected SQLException occurred");
res = true;
}
}