summaryrefslogtreecommitdiffstats
path: root/basic/qa
diff options
context:
space:
mode:
Diffstat (limited to 'basic/qa')
-rw-r--r--basic/qa/vba_tests/format.vb4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/qa/vba_tests/format.vb b/basic/qa/vba_tests/format.vb
index b4f19281ba25..54b5610851aa 100644
--- a/basic/qa/vba_tests/format.vb
+++ b/basic/qa/vba_tests/format.vb
@@ -296,8 +296,8 @@ Sub Custom_Number_Format_Sample()
TestLog_ASSERT TestStr = "1,000,000", "#,###: " & TestStr
'MsgBox TestStr
- TestStr = Format(1.09837555, "######E-###") '109838E-5
- TestLog_ASSERT TestStr = "109838E-5", "######E-###: " & TestStr
+ TestStr = Format(1.09837555, "######E-###") '109838E-5 => 1E0 with engineering notation
+ TestLog_ASSERT TestStr = "1E0", "######E-###: " & TestStr
'MsgBox TestStr
TestStr = Format(2345.25, "$#,###.##") '$2.345.25