Maximum BMC dump size corrected

Signed-off-by: manashsarma <manashsarma@in.ibm.com>
Change-Id: I90959c1ca0d2d452964d6c295420c59d86e77164
diff --git a/redfish/managers/test_bmc_dumps.robot b/redfish/managers/test_bmc_dumps.robot
index 6ee639c..c1400e6 100644
--- a/redfish/managers/test_bmc_dumps.robot
+++ b/redfish/managers/test_bmc_dumps.robot
@@ -45,7 +45,7 @@
 
 
 Verify User Initiated BMC Dump Size
-    [Documentation]  Verify user initiated BMC dump size is under 200 KB.
+    [Documentation]  Verify user initiated BMC dump size is under 20 MB.
     [Tags]  Verify_User_Initiated_BMC_Dump_Size
 
     ${dump_id}=  Create User Initiated BMC Dump Via Redfish
@@ -61,8 +61,8 @@
     # "Id": "9",
     # "Name": "BMC Dump Entry"
 
-    # Max size for dump is 200 KB = 200x1024 Byte.
-    Should Be True  0 < ${resp["AdditionalDataSizeBytes"]} < 204800
+    # Max size for dump is 20 MB = 20x1024x1024 Byte.
+    Should Be True  0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
 
 
 Verify Dump Persistency On Dump Service Restart