Skip to content

Commit

Permalink
#3671 Fixing inspect test
Browse files Browse the repository at this point in the history
- Fix attribute order to validate inspect command

Signed-off-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
uilianries committed Oct 9, 2018
1 parent 3f4d969 commit 5a64a34
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions conans/test/command/inspect_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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)

0 comments on commit 5a64a34

Please sign in to comment.