diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2023-01-25 11:16:00 +0000 |
---|---|---|
committer | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2023-01-26 07:45:25 +0000 |
commit | 263c15ee238e04c7b25d36cdbb9ab21c0bdf518d (patch) | |
tree | 5841f3230ec7f46e3d536213f64acc8cd1029ee4 /basic/qa | |
parent | cba2fda9ce2a82d874b86e585b576cb7d551d64d (diff) |
Delete extra whitespaces inserted by the editor
Change-Id: I89ef4d04e27e52f5ee6168f368e23f96e112a8be
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146085
Tested-by: Jenkins
Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Diffstat (limited to 'basic/qa')
-rw-r--r-- | basic/qa/vba_tests/chr.vb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/qa/vba_tests/chr.vb b/basic/qa/vba_tests/chr.vb index 5dc85a0c9157..f9bc7ea12aa5 100644 --- a/basic/qa/vba_tests/chr.vb +++ b/basic/qa/vba_tests/chr.vb @@ -21,7 +21,7 @@ Sub verify_testCHR() TestUtil.AssertEqual(Chr(87), "W", "Chr(87)") TestUtil.AssertEqual(Chr(105), "i", "Chr(105)") TestUtil.AssertEqual(Chr(35), "#", "Chr(35)") - + ' tdf#145693 - argument name should be 'charcode' instead of 'string' TestUtil.AssertEqual(Chr(charcode:=35), "#", "Chr(charcode:=35)") |