-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee3e10a
commit 7d0a183
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ def test_all_pypi_info(self): | |
assert pypi.get_mail() == "[email protected]" | ||
assert pypi.get_license() == "Apache-2.0" | ||
assert pypi.get_project_name() == "meson-ui" | ||
assert pypi.get_version() == "0.20.1" | ||
assert pypi.get_version() == "0.20.2" | ||
assert pypi.get_description() == info | ||
|
||
def test_only_author_info(self): | ||
|
@@ -61,7 +61,7 @@ def test_only_project_info(self): | |
pypi = ProjectInfo() | ||
assert pypi.get_license() == "Apache-2.0" | ||
assert pypi.get_project_name() == "meson-ui" | ||
assert pypi.get_version() == "0.20.1" | ||
assert pypi.get_version() == "0.20.2" | ||
assert pypi.get_description() == info | ||
|
||
|
||
|