diff options
author | Conrad Beach <conradbeach@gmail.com> | 2017-09-28 16:51:09 -0600 |
---|---|---|
committer | Conrad Beach <conradbeach@gmail.com> | 2017-09-28 16:51:09 -0600 |
commit | 7c68fc98d8f67ee55b8cedadad2bdd3a7788dbf3 (patch) | |
tree | eab8a459788463fd1b49c21f164d13c51ce9b68c /guides | |
parent | d30586211b41e018869a1a3f4e3af778a31591db (diff) | |
download | rails-7c68fc98d8f67ee55b8cedadad2bdd3a7788dbf3.tar.gz rails-7c68fc98d8f67ee55b8cedadad2bdd3a7788dbf3.tar.bz2 rails-7c68fc98d8f67ee55b8cedadad2bdd3a7788dbf3.zip |
[ci skip] Fix typo.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 4ee3267261..c5b2a694e7 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1513,7 +1513,7 @@ class BillingJobTest < ActiveJob::TestCase end ``` -This test is pretty simple and only asserts that the job get the work done +This test is pretty simple and only asserts that the job got the work done as expected. By default, `ActiveJob::TestCase` will set the queue adapter to `:test` so that |