Skip to content

Commit

Permalink
cmake scripts: fix test_scope_handling
Browse files Browse the repository at this point in the history
The file parameter for a new Scope got renamed to qmake_file.

Change-Id: I6cb9d010892f3e3132fac09eead1dbf45d6ba86d
Reviewed-by: Alexandru Croitor <[email protected]>
  • Loading branch information
gladhorn committed Oct 10, 2019
1 parent b42feb0 commit 2659d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/cmake/tests/test_scope_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _map_to_operation(**kwargs):

def _new_scope(*, parent_scope=None, condition='', **kwargs) -> Scope:
return Scope(parent_scope=parent_scope,
file='file1', condition=condition, operations=_map_to_operation(**kwargs))
qmake_file='file1', condition=condition, operations=_map_to_operation(**kwargs))


def _evaluate_scopes(scopes: ScopeList) -> ScopeList:
Expand Down

0 comments on commit 2659d31

Please sign in to comment.