Skip to content

Commit 0357bbc

Browse files
committed
Merge pull request sschwartzman#4 from thande/master
fixed trailing } at end of sleep substitution
2 parents 76b6c26 + d1ff210 commit 0357bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nr_synthetics_formatter/nr-synthetics.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ builder.selenium2.io.addLangFormatter({
9393
"print":
9494
".then(function () { log('{text}'); })\n\n",
9595
"pause":
96-
function(step) { return scriptify("$browser.sleep( " + step.waitTime + "})"); },
96+
function(step) { return scriptify("$browser.sleep( " + step.waitTime + ")"); },
9797
"switchToFrame":
9898
function(step) { return scriptify("$browser.switchTo().frame('" + step.identifier + "')"); },
9999
"switchToFrameByIndex":

0 commit comments

Comments
 (0)