Skip to content

Commit

Permalink
fix unit test bug due to change in default license
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWilhelm committed Jan 6, 2018
1 parent 5837e38 commit 8b7f9b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ Just a few examples to get you an idea of how easy PyScaffold is to use:

``putup my_little_project``
The simplest way of using PyScaffold. A directory ``my_little_project`` is
created with a Python package named exactly the same. Only a simple copyright
statement is used as license.
created with a Python package named exactly the same. The MIT license will be used.

``putup skynet -l gpl3 -d "Finally, the ultimate AI!" -u http://sky.net``
This will create a project and package named *skynet* licensed under the GPL3.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_project_without_args(tmpfolder):
new_opts = info.project(opts)
assert new_opts['url'] == "http://www.blue-yonder.com/"
assert new_opts['package'] == "my_project"
assert new_opts['license'] == "none"
assert new_opts['license'] == "mit"
assert new_opts['description'] == "my description"


Expand Down

0 comments on commit 8b7f9b6

Please sign in to comment.