From 5a64a34fdc868b8b5cfc041efded9f3e582f4d4a Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Tue, 9 Oct 2018 18:29:27 -0300 Subject: [PATCH] #3671 Fixing inspect test - Fix attribute order to validate inspect command Signed-off-by: Uilian Ries --- conans/test/command/inspect_test.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/conans/test/command/inspect_test.py b/conans/test/command/inspect_test.py index 68474ad9b56..f9fc0344fd9 100644 --- a/conans/test/command/inspect_test.py +++ b/conans/test/command/inspect_test.py @@ -137,13 +137,14 @@ def build(self): license: None author: None description: None +tags: None generators: ['txt'] exports: None exports_sources: None short_paths: False apply_env: True build_policy: None -tags: None""", client.out) +""", client.out) def test_inspect_filled_attributes(self): client = TestClient() @@ -169,10 +170,10 @@ def build(self): license: MIT author: John Doe description: Yet Another Test +tags: ['foo', 'bar', 'qux'] generators: cmake exports: None exports_sources: None short_paths: False apply_env: True -build_policy: None -tags: ['foo', 'bar', 'qux']""", client.out) +build_policy: None""", client.out)