diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2021-09-07 21:31:13 +0200 |
---|---|---|
committer | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2021-09-07 22:25:13 +0200 |
commit | 409abb1fca4d360295304e1efff471d63a51e436 (patch) | |
tree | 0ef9c5c736985f83cb9b083c3a8ca163a482c7f7 | |
parent | 092740eddd9d2e9b19e4c08f4980a59402e676e1 (diff) |
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@yahoo.de>
-rw-r--r-- | basic/qa/vba_tests/collection.vb | 10 |
1 files changed, 5 insertions, 5 deletions
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: |