summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorStefan Knorr (astron) <heinzlesspam@gmail.com>2011-12-08 09:05:20 +0100
committerStefan Knorr (astron) <heinzlesspam@gmail.com>2011-12-08 09:06:09 +0100
commitad2eb6c4ba3ca36e2302c721a106dac80d266325 (patch)
treeaa06f1d4b3473fd64f886b89b27af05dd043374f /qadevOOo
parent79b00c41863bcb0d0cc1781d18e97d5871667fb0 (diff)
Less succes, more success
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XStorable.java4
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges.java2
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java6
3 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/tests/java/ifc/frame/_XStorable.java b/qadevOOo/tests/java/ifc/frame/_XStorable.java
index f9e8391b8c04..8883f347ad6f 100644
--- a/qadevOOo/tests/java/ifc/frame/_XStorable.java
+++ b/qadevOOo/tests/java/ifc/frame/_XStorable.java
@@ -82,7 +82,7 @@ public class _XStorable extends MultiMethodTest {
// else try to obtain location
requiredMethod("storeAsURL()");
if (storeUrl != null) {
- // if stored succesfully - check location
+ // if stored successfully - check location
log.println(oObj.getLocation() + "--" + storeUrl);
tRes.tested("getLocation()",
storeUrl.equals(oObj.getLocation()));
@@ -107,7 +107,7 @@ public class _XStorable extends MultiMethodTest {
public void _hasLocation() {
requiredMethod("storeAsURL()");
if (storeUrl != null) {
- // if stored succesfully - it should have a location
+ // if stored successfully - it should have a location
tRes.tested("hasLocation()", oObj.hasLocation());
} else {
// if not - it should not
diff --git a/qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges.java b/qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges.java
index 36cfc3e4baf6..dc464a20cd65 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XDatabaseRanges.java
@@ -84,7 +84,7 @@ public class _XDatabaseRanges extends MultiMethodTest {
/**
* Test removes the database range with name that exist exactly and then
* tries to remove the range with name that doesn't exist exactly. <p>
- * Has <b> OK </b> status if first range was succesfully removed and
+ * Has <b> OK </b> status if first range was successfully removed and
* exception was thrown when trying to remove non-existent database range.<p>
* The following method tests are to be completed successfully before :
* <ul>
diff --git a/qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java b/qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java
index ec484f9bf0d6..ff5b6f49295d 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XSheetCellCursor.java
@@ -255,10 +255,10 @@ public class _XSheetCellCursor extends MultiMethodTest {
}
mergeRange.merge(true);
- log.println("DB: Successfuly merged.") ;
+ log.println("DB: Successfully merged.") ;
oObj.collapseToMergedArea() ;
- log.println("DB: Succesfully collapseToMergedArea() method called");
+ log.println("DB: Successfully collapseToMergedArea() method called");
// unmerge area to restore SpreadSheet
mergeRange.merge(false);
@@ -271,7 +271,7 @@ public class _XSheetCellCursor extends MultiMethodTest {
int rows = ((XColumnRowRange)
UnoRuntime.queryInterface(
XColumnRowRange.class, oObj) ).getRows().getCount();
- log.println("DB: Column and row numbers succesfully get") ;
+ log.println("DB: Column and row numbers successfully get") ;
if (cols == width + 1 && rows == height + 3) {
bResult &= true;