Skip to content

Commit

Permalink
Fixed small typo Bafore->Before
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Mar 25, 2024
1 parent b65c36e commit 3307641
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public TestCaseStepActionExecution doAction(TestCaseStepActionExecution actionEx
* Put Wait in ms before the action to message.
*/
if (actionExecution.getWaitBefore() > 0) {
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(actionExecution.getWaitBefore()) + " ms Bafore.");
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(actionExecution.getWaitBefore()) + " ms Before.");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public TestCaseStepActionControlExecution doControl(TestCaseStepActionControlExe
* Put Wait in ms before the action to message.
*/
if (controlExecution.getWaitBefore() > 0) {
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(controlExecution.getWaitBefore()) + " ms Bafore.");
res.setDescription(res.getDescription() + " -- Waited " + String.valueOf(controlExecution.getWaitBefore()) + " ms Before.");
}

/**
Expand Down

0 comments on commit 3307641

Please sign in to comment.