diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-03-07 15:40:52 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-03-07 15:40:52 +0900 |
commit | 12cadc6f62da270eb7d9cfb010450f4123da75df (patch) | |
tree | 4586518274b8e9dd34f38c8ea9e2d1b39a7caab6 /guides | |
parent | ef4dfcc3b3348e4add7efb2c72bf04d55ab77a0b (diff) | |
download | rails-12cadc6f62da270eb7d9cfb010450f4123da75df.tar.gz rails-12cadc6f62da270eb7d9cfb010450f4123da75df.tar.bz2 rails-12cadc6f62da270eb7d9cfb010450f4123da75df.zip |
Remove `:on` option that does ot exist [ci skip]
That option was removed in 0a683085b1db435b7371350b2799a0f248cd717a
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 3f53ccb242..4caf55ab12 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -658,8 +658,8 @@ end The driver name is a required argument for `driven_by`. The optional arguments that can be passed to `driven_by` are `:using` for the browser (this will only -be used for non-headless drivers like Selenium), `:on` for the port Puma should -use, and `:screen_size` to change the size of the screen for screenshots. +be used for non-headless drivers like Selenium), and `:screen_size` to change +the size of the screen for screenshots. ```ruby require "test_helper" |