diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-27 22:12:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-27 23:29:40 +0200 |
commit | 5dfe02c60767a633c67f7f6fc9557b54b3c99b63 (patch) | |
tree | 666cf4946bbb0f02efa2690fd3147daad003d4ff /tests/pypi.scm | |
parent | 78799a6fdc5a00b3a0e62c0e99c3340298d36eff (diff) |
tests: Remove trailing commas in JSON tests.
These commas are rejected by Guile-JSON 3.5.0.
* tests/crate.scm (test-foo-dependencies)
(test-root-dependencies, test-intermediate-1-dependencies)
(test-intermediate-2-dependencies): Remove trailing commas.
* tests/gem.scm (test-bar-json): Likewise.
* tests/pypi.scm (test-json): Likewise.
Diffstat (limited to 'tests/pypi.scm')
-rw-r--r-- | tests/pypi.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/pypi.scm b/tests/pypi.scm index 19af6e61fb..6788c8db3e 100644 --- a/tests/pypi.scm +++ b/tests/pypi.scm @@ -46,13 +46,13 @@ \"1.0.0\": [ { \"url\": \"https://example.com/foo-1.0.0.egg\", - \"packagetype\": \"bdist_egg\", + \"packagetype\": \"bdist_egg\" }, { \"url\": \"https://example.com/foo-1.0.0.tar.gz\", - \"packagetype\": \"sdist\", + \"packagetype\": \"sdist\" }, { \"url\": \"https://example.com/foo-1.0.0-py2.py3-none-any.whl\", - \"packagetype\": \"bdist_wheel\", + \"packagetype\": \"bdist_wheel\" } ] } @@ -120,6 +120,7 @@ Provides-Extra: testing Requires-Dist: pytest (>=3.1.0); extra == 'testing' ") + (test-begin "pypi") (test-equal "guix-package->pypi-name, old URL style" |