Skip to content

Commit

Permalink
Fixes typo (#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
budnik committed Jan 5, 2022
1 parent 90ea3ea commit 8ced6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ upgrade notes for more info.
* Changed the format of the VCR cassettes. The old format was tied directly to Net::HTTP, but webmock supports other HTTP libraries and I plan to allow VCR to use them in the future. Note that this is a breaking change--your old VCR cassettes from prior releases will not work with VCR 0.4.0. However, VCR provides a rake task to assist you in migrating your cassettes to the new format. Simply add `load 'vcr/tasks/vcr.rake'` to your project's Rakefile, and run:

```
$ rake vcr:migrate_cassettes DIR=path/to/cassete/library/directory
$ rake vcr:migrate_cassettes DIR=path/to/cassette/library/directory
```

* The new cassette format records more information about the request (i.e. the request headers and body), so that it can potentially be used with webmock in the future.
Expand Down
2 changes: 1 addition & 1 deletion lib/vcr.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def current_cassette
# Inserts the named cassette using the given cassette options.
# New HTTP interactions, if allowed by the cassette's `:record` option, will
# be recorded to the cassette. The cassette's existing HTTP interactions
# will be used to stub requests, unless prevented by the cassete's
# will be used to stub requests, unless prevented by the cassette's
# `:record` option.
#
# @example
Expand Down

0 comments on commit 8ced6c9

Please sign in to comment.