Skip to content

Commit

Permalink
docs: result variable was not defined (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
GenevieveBuckley authored Oct 29, 2023
1 parent 2a1b0c2 commit 60cd943
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ Use the following code in your test file to generate the project with all the de
.. code-block:: python
def test_template(copie):
res = copie.copy()
result = copie.copy()
assert res.exit_code == 0
assert res.exception is None
assert result.exit_code == 0
assert result.exception is None
assert result.project_dir.name == "foobar"
assert result.project_dir.is_dir()
Expand Down

0 comments on commit 60cd943

Please sign in to comment.