diff --git a/cmd/expandybird/expander/expander_test.go b/cmd/expandybird/expander/expander_test.go index 28a79a9a6..2f4ba34c4 100644 --- a/cmd/expandybird/expander/expander_test.go +++ b/cmd/expandybird/expander/expander_test.go @@ -31,13 +31,6 @@ import ( var expanderName = "../../../expansion/expansion.py" -type testCase struct { - Description string - Request *expansion.ServiceRequest - ExpectedResponse *expansion.ServiceResponse - ExpectedError string -} - // content provides an easy way to provide file content verbatim in tests. func content(lines []string) []byte { return []byte(strings.Join(lines, "\n") + "\n")