From 2b8aebbdf987339352518e38de09825292e7450d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 29 Jun 2020 15:06:21 +0300 Subject: [PATCH] Extend test for parsing package manifest when "system" is used as a list --- tests/package/test_manifest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/package/test_manifest.py b/tests/package/test_manifest.py index 0c89e012..884d6af0 100644 --- a/tests/package/test_manifest.py +++ b/tests/package/test_manifest.py @@ -628,7 +628,8 @@ def test_package_json_schema(): "name": "tool-scons", "description": "SCons software construction tool", "keywords": "SCons, build", - "url": "http://www.scons.org", + "homepage": "http://www.scons.org", + "system": ["linux_armv6l", "linux_armv7l", "linux_armv8l"], "version": "3.30101.0" } """ @@ -645,6 +646,7 @@ def test_package_json_schema(): "description": "SCons software construction tool", "keywords": ["scons", "build"], "homepage": "http://www.scons.org", + "system": ["linux_armv6l", "linux_armv7l", "linux_armv8l"], "version": "3.30101.0", }, )