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

New commits:
commit 2bd188ef9064b78dacdd688f3722ecf48c264067
Author:     Andreas Heinisch <andreas.heini...@yahoo.de>
AuthorDate: Tue Sep 7 21:31:13 2021 +0200
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Thu Nov 11 12:31:19 2021 +0100

    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.heini...@yahoo.de>
    Signed-off-by: Xisco Fauli <xiscofa...@libreoffice.org>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125031

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:

Reply via email to