Skip to content

Commit

Permalink
remove test that requires client mode
Browse files Browse the repository at this point in the history
  • Loading branch information
aajtodd committed Oct 2, 2023
1 parent 38b6eae commit fa93151
Showing 1 changed file with 0 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,32 +260,6 @@ class SerializeStructGeneratorTest {
actual.shouldContainOnlyOnceWithDiff(expected)
}

// @Test
// fun `it serializes a structure with a required nested structure`() {
// val model = (
// modelPrefix + """
// structure FooRequest {
// @required
// payload: NestedStructure
// }
//
// structure NestedStructure {
// nestedPayload: String
// }
// """
// ).toSmithyModel()
//
// val expected = """
// serializer.serializeStruct(OBJ_DESCRIPTOR) {
// field(PAYLOAD_DESCRIPTOR, input.payload, ::serializeNestedStructureDocument)
// }
// """.trimIndent()
//
// val actual = codegenSerializerForShape(model, "com.test#Foo")
//
// actual.shouldContainOnlyOnceWithDiff(expected)
// }

@Test
fun `it serializes a structure containing a union of primitives`() {
val model = (
Expand Down

0 comments on commit fa93151

Please sign in to comment.