use single quotes consistently

This commit is contained in:
Christopher Fenn 2024-04-05 16:38:04 +02:00
parent 1e37caadfc
commit 6e441a8d03
1 changed files with 4 additions and 4 deletions

View File

@ -153,9 +153,9 @@ describe('Descriptor types', () => {
aggregate_value: 'foobar' aggregate_value: 'foobar'
}, },
'(google.api.http)': { '(google.api.http)': {
post: "/hello", post: '/hello',
body: "*", body: '*',
response_body: "*", response_body: '*',
additional_bindings: {} additional_bindings: {}
}, },
'(google.api.method_signature)': 'bar' '(google.api.method_signature)': 'bar'
@ -170,7 +170,7 @@ describe('Descriptor types', () => {
idempotency_level: 'IDEMPOTENCY_UNKNOWN', idempotency_level: 'IDEMPOTENCY_UNKNOWN',
uninterpreted_option: [], uninterpreted_option: [],
'(google.api.http)': { '(google.api.http)': {
get: "/hello", get: '/hello',
additional_bindings: { additional_bindings: {
body: '*', body: '*',
get: '/hello-world' get: '/hello-world'