File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2530,7 +2530,7 @@ public void Test_BasicTable_replaceColName_originalName_null_1() throws Exceptio
2530
2530
}catch (Exception e ){
2531
2531
re = e .getMessage ();
2532
2532
}
2533
- assertEquals ("The param originalColName '' does not exist in table ." ,re );
2533
+ assertEquals ("The param ' originalColName' or 'newColName' cannot be null or empty ." ,re );
2534
2534
}
2535
2535
@ Test
2536
2536
public void Test_BasicTable_replaceColName_originalName_not_exist () throws Exception {
@@ -2556,7 +2556,7 @@ public void Test_BasicTable_replaceColName_newColName_null() throws Exception {
2556
2556
}catch (Exception e ){
2557
2557
re = e .getMessage ();
2558
2558
}
2559
- assertEquals ("The param 'newColName' cannot be null or empty." ,re );
2559
+ assertEquals ("The param 'originalColName' or ' newColName' cannot be null or empty." ,re );
2560
2560
}
2561
2561
@ Test
2562
2562
public void Test_BasicTable_replaceColName_newColName_null_1 () throws Exception {
@@ -2569,7 +2569,7 @@ public void Test_BasicTable_replaceColName_newColName_null_1() throws Exception
2569
2569
}catch (Exception e ){
2570
2570
re = e .getMessage ();
2571
2571
}
2572
- assertEquals ("The param 'newColName' cannot be null or empty." ,re );
2572
+ assertEquals ("The param 'originalColName' or ' newColName' cannot be null or empty." ,re );
2573
2573
}
2574
2574
@ Test
2575
2575
public void Test_BasicTable_replaceColName_newColName_same () throws Exception {
You can’t perform that action at this time.
0 commit comments