Skip to content

Commit

Permalink
Remove extraneous quotes from union tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JordonPhillips authored and kstich committed Aug 21, 2020
1 parent cd764b3 commit 33fcb19
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 126 deletions.
84 changes: 42 additions & 42 deletions smithy-aws-protocol-tests/model/awsJson1_0/unions.smithy
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"stringValue": "foo"
contents: {
stringValue: "foo"
}
}
},
Expand All @@ -80,8 +80,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"booleanValue": true
contents: {
booleanValue: true
}
}
},
Expand All @@ -103,8 +103,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"numberValue": 1
contents: {
numberValue: 1
}
}
},
Expand All @@ -126,8 +126,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"blobValue": "foo"
contents: {
blobValue: "foo"
}
}
},
Expand All @@ -149,8 +149,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"timestampValue": 1398796238
contents: {
timestampValue: 1398796238
}
}
},
Expand All @@ -172,8 +172,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"enumValue": "Foo"
contents: {
enumValue: "Foo"
}
}
},
Expand All @@ -195,8 +195,8 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"listValue": ["foo", "bar"]
contents: {
listValue: ["foo", "bar"]
}
}
},
Expand All @@ -221,10 +221,10 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"mapValue": {
"foo": "bar",
"spam": "eggs",
contents: {
mapValue: {
foo: "bar",
spam: "eggs",
}
}
}
Expand All @@ -249,9 +249,9 @@ apply JsonUnions @httpRequestTests([
"X-Amz-Target": "JsonRpc10.JsonUnions",
},
params: {
"contents": {
"structureValue": {
"hi": "hello",
contents: {
structureValue: {
hi: "hello",
}
}
}
Expand All @@ -275,8 +275,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"stringValue": "foo"
contents: {
stringValue: "foo"
}
}
},
Expand All @@ -296,8 +296,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"booleanValue": true
contents: {
booleanValue: true
}
}
},
Expand All @@ -317,8 +317,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"numberValue": 1
contents: {
numberValue: 1
}
}
},
Expand All @@ -338,8 +338,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"blobValue": "foo"
contents: {
blobValue: "foo"
}
}
},
Expand All @@ -359,8 +359,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"timestampValue": 1398796238
contents: {
timestampValue: 1398796238
}
}
},
Expand All @@ -380,8 +380,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"enumValue": "Foo"
contents: {
enumValue: "Foo"
}
}
},
Expand All @@ -401,8 +401,8 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"listValue": ["foo", "bar"]
contents: {
listValue: ["foo", "bar"]
}
}
},
Expand All @@ -425,10 +425,10 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"mapValue": {
"foo": "bar",
"spam": "eggs",
contents: {
mapValue: {
foo: "bar",
spam: "eggs",
}
}
}
Expand All @@ -451,9 +451,9 @@ apply JsonUnions @httpResponseTests([
"Content-Type": "application/x-amz-json-1.0",
},
params: {
"contents": {
"structureValue": {
"hi": "hello",
contents: {
structureValue: {
hi: "hello",
}
}
}
Expand Down
Loading

0 comments on commit 33fcb19

Please sign in to comment.