diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-22 18:43:02 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-08-23 12:46:15 +0200 |
commit | cfefaafc1c988e964e06d15f9cdeada6cfbea32d (patch) | |
tree | e75438262dfda20c22688cb0f8e589dc308db76f /qadevOOo | |
parent | 7bbe6e5c72178781cb798f7c8497619422372c13 (diff) |
Fix typo in code
Change-Id: I9a81d265a99aee896a71c14e3a3ee6ba863b4d5d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101199
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/mod/_forms/GenericModelTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java index b24a951c30b3..c5ffe1ee55f8 100644 --- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java +++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java @@ -133,7 +133,7 @@ public class GenericModelTest extends TestCase { private static final String m_TestDB = "TestDB"; private DBTools m_dbTools = null; - private boolean m_ConnectionColsed = false; + private boolean m_ConnectionClosed = false; /** * describes the kind of the shape which should be created. @@ -217,7 +217,7 @@ public class GenericModelTest extends TestCase { protected void initialize(TestParameters tParam, PrintWriter log) throws Exception { log.println("creating a textdocument"); m_xTextDoc = WriterTools.createTextDoc(tParam.getMSF()); - m_ConnectionColsed = false; + m_ConnectionClosed = false; debug = tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE); m_propertiesToSet.clear(); } @@ -237,7 +237,7 @@ public class GenericModelTest extends TestCase { // some interface tests call cleanup to reset the environment. If such // a test is the last one cleanup was called twice. The second call // causes then nasty exceptions... - if (m_ConnectionColsed) return; + if (m_ConnectionClosed) return; try { XIndexAccess forms = UnoRuntime.queryInterface( XIndexAccess.class, @@ -329,7 +329,7 @@ public class GenericModelTest extends TestCase { log.println("ERROR: Error while object test cleaning up: " + e.toString()); } - m_ConnectionColsed = true; + m_ConnectionClosed = true; } /** |