Skip to content

Commit 3307641

Browse files
committed
Fixed small typo Bafore->Before
1 parent b65c36e commit 3307641

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/src/main/java/org/cerberus/core/engine/gwt/impl/ActionService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public TestCaseStepActionExecution doAction(TestCaseStepActionExecution actionEx
510510
* Put Wait in ms before the action to message.
511511
*/
512512
if (actionExecution.getWaitBefore() > 0) {
513-
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(actionExecution.getWaitBefore()) + " ms Bafore.");
513+
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(actionExecution.getWaitBefore()) + " ms Before.");
514514
}
515515

516516
/**

source/src/main/java/org/cerberus/core/engine/gwt/impl/ControlService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public TestCaseStepActionControlExecution doControl(TestCaseStepActionControlExe
433433
* Put Wait in ms before the action to message.
434434
*/
435435
if (controlExecution.getWaitBefore() > 0) {
436-
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(controlExecution.getWaitBefore()) + " ms Bafore.");
436+
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(controlExecution.getWaitBefore()) + " ms Before.");
437437
}
438438

439439
/**

0 commit comments

Comments
 (0)