Skip to content

Commit b065c3e

Browse files
committed
fix minor issues in README
1 parent ee5662d commit b065c3e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ allows you to:
1818

1919
### Testing
2020

21-
To inject recording and playback into your tests, use the InterposerTestCase
21+
To inject recording and playback into your tests, use the `InterposedTestCase`
2222
class and patch interposed versions of external services. An example of this
2323
can be found in the [example_weather_test](https://github.com/tuono/interposer/blob/develop/tests/example_weather_test.py),
2424
which tests [weather.py](https://github.com/tuono/interposer/blob/develop/interposer/_testing/weather.py).
2525

26-
To generate a recording, InterposerTestCase looks for an environment variable
27-
named RECORDING and if set (and not empty), will generate a recording of the
26+
To generate a recording, `InterposedTestCase` looks for an environment variable
27+
named `RECORDING` and if set (and not empty), will generate a recording of the
2828
interaction with the interposed class(es):
2929

3030
```
@@ -50,7 +50,7 @@ sys 0m0.212s
5050
```
5151

5252
Given tox has a roughly 2 second startup time, we see the playback is
53-
essentially as fast as a handcrafted mock, but took less time to make!
53+
essentially as fast as a handcrafted mock, but took way less time to make!
5454
More details can be found in the Recording and Playback section below.
5555

5656
### Auditing
@@ -259,7 +259,7 @@ in a wrapped class.
259259

260260
TODO: provide example!
261261

262-
## Notes
262+
## Other Notes
263263

264264
- Interposer is a resource, so you need to call open() and close() or
265265
use the ScopedInterposer context manager.

0 commit comments

Comments
 (0)