Skip to content

Commit 0cf12b1

Browse files
committed
chore: change two string from double to single quoted
1 parent 0ec9b05 commit 0cf12b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/test_case_management_v1_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def setup_class(cls):
6868
print('Setup complete.')
6969

7070
needscredentials = pytest.mark.skipif(
71-
not os.path.exists(config_file), reason="External configuration not available, skipping..."
71+
not os.path.exists(config_file), reason='External configuration not available, skipping...'
7272
)
7373

7474
@needscredentials
@@ -248,7 +248,7 @@ def test_add_resource_example(self):
248248
resource = case_management_service.add_resource(
249249
case_number=case_number,
250250
crn=resource_crn,
251-
note="This resource is the service that is having the problem.",
251+
note='This resource is the service that is having the problem.',
252252
).get_result()
253253

254254
print(json.dumps(resource, indent=2))

0 commit comments

Comments
 (0)