Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: dvesperini <[email protected]>
  • Loading branch information
dvesperini committed May 6, 2024
1 parent a5d8f8a commit c4a0da7
Show file tree
Hide file tree
Showing 4 changed files with 1,189 additions and 372 deletions.
19 changes: 15 additions & 4 deletions examples/test_project_v1_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ def setup_class(cls):

# begin-common

project_service = ProjectV1.new_instance(
)
project_service = ProjectV1.new_instance()

# end-common
assert project_service is not None
Expand Down Expand Up @@ -138,7 +137,13 @@ def test_create_config_example(self):
'locator_id': '1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.018edf04-e772-4ca2-9785-03e8e03bef72-global',
'description': 'The stage environment configuration.',
'name': 'env-stage',
'inputs': {'account_id': 'account_id', 'resource_group': 'stage', 'access_tags': ['env:stage'], 'logdna_name': 'LogDNA_stage_service', 'sysdig_name': 'SysDig_stage_service'},
'inputs': {
'account_id': 'account_id',
'resource_group': 'stage',
'access_tags': ['env:stage'],
'logdna_name': 'LogDNA_stage_service',
'sysdig_name': 'SysDig_stage_service',
},
}

response = project_service.create_config(
Expand Down Expand Up @@ -432,7 +437,13 @@ def test_update_config_example(self):

project_config_definition_patch_model = {
'name': 'env-stage',
'inputs': {'account_id': 'account_id', 'resource_group': 'stage', 'access_tags': ['env:stage'], 'logdna_name': 'LogDNA_stage_service', 'sysdig_name': 'SysDig_stage_service'},
'inputs': {
'account_id': 'account_id',
'resource_group': 'stage',
'access_tags': ['env:stage'],
'logdna_name': 'LogDNA_stage_service',
'sysdig_name': 'SysDig_stage_service',
},
}

response = project_service.update_config(
Expand Down
Loading

0 comments on commit c4a0da7

Please sign in to comment.