Skip to content

Commit c54eaa1

Browse files
committedJun 4, 2014
Remove global
1 parent ee5a076 commit c54eaa1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎docs/docs.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -229,15 +229,14 @@ require 'json' # for .to_json
229229
require 'sauce_whisk'
230230

231231
After do |scenario|
232-
$passed = ! scenario.failed?
233-
234232
# end the test session, ignoring any exceptions.
235233
ignore { $driver.driver_quit }
236234

237235
user = ENV['SAUCE_USERNAME']
238236
key = ENV['SAUCE_ACCESS_KEY']
239237
if user && !user.empty? && key && !key.empty?
240-
SauceWhisk::Jobs.change_status $driver.driver.session_id, $passed
238+
passed = ! scenario.failed?
239+
SauceWhisk::Jobs.change_status $driver.driver.session_id, passed
241240
end
242241
end
243242
```

0 commit comments

Comments
 (0)
Please sign in to comment.