[Libreoffice-commits] core.git: basic/qa

Andreas Heinisch (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 7 20:25:48 UTC 2021


 basic/qa/vba_tests/collection.vb |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 409abb1fca4d360295304e1efff471d63a51e436
Author:     Andreas Heinisch <andreas.heinisch at yahoo.de>
AuthorDate: Tue Sep 7 21:31:13 2021 +0200
Commit:     Andreas Heinisch <andreas.heinisch at yahoo.de>
CommitDate: Tue Sep 7 22:25:13 2021 +0200

    Fixed a copy paste error in the test cases
    
    Change-Id: Ib11b6cfe385542664b28de35897caee67099d22c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121792
    Tested-by: Jenkins
    Reviewed-by: Andreas Heinisch <andreas.heinisch at yahoo.de>

diff --git a/basic/qa/vba_tests/collection.vb b/basic/qa/vba_tests/collection.vb
index d98ad9d1d237..0f0c47a262d9 100644
--- a/basic/qa/vba_tests/collection.vb
+++ b/basic/qa/vba_tests/collection.vb
@@ -60,12 +60,12 @@ Sub verify_testCollection()
     ' After the fix of tdf#110003
     ' TestUtil.AssertEqual(b.Count, 2, "b.Count")
 
-    TestUtil.AssertEqual(b.Item("SS"), 1, "a.Item(""SS"")")
-    TestUtil.AssertEqual(b.Item("ss"), 1, "a.Item(""ss"")")
-    TestUtil.AssertEqual(b.Item("ẞ"), 3, "a.Item(""ẞ"")")
-    TestUtil.AssertEqual(b.Item("ß"), 4, "a.Item(""ß"")")
+    TestUtil.AssertEqual(b.Item("SS"), 1, "b.Item(""SS"")")
+    TestUtil.AssertEqual(b.Item("ss"), 1, "b.Item(""ss"")")
+    TestUtil.AssertEqual(b.Item("ẞ"), 3, "b.Item(""ẞ"")")
+    TestUtil.AssertEqual(b.Item("ß"), 4, "b.Item(""ß"")")
     ' After the fix of tdf#110003
-    ' TestUtil.AssertEqual(a.Item("ß"), 3, "a.Item(""ß"")")
+    ' TestUtil.AssertEqual(b.Item("ß"), 3, "b.Item(""ß"")")
 
     Exit Sub
 errorHandler:


More information about the Libreoffice-commits mailing list