diff --git a/spec/fixtures/impl/closer_output.go b/spec/fixtures/impl/closer_output.go index 5e976f3..4f077f4 100644 --- a/spec/fixtures/impl/closer_output.go +++ b/spec/fixtures/impl/closer_output.go @@ -5,4 +5,3 @@ type CloserTest2 struct{} func (closertest *CloserTest2) Close() error { panic("not implemented") // TODO: Implement } - diff --git a/spec/fixtures/impl/reader_output.go b/spec/fixtures/impl/reader_output.go index 26df873..c384b23 100644 --- a/spec/fixtures/impl/reader_output.go +++ b/spec/fixtures/impl/reader_output.go @@ -4,5 +4,4 @@ func (r Read2) Read(p []byte) (n int, err error) { panic("not implemented") // TODO: Implement } - type Read2 struct{} diff --git a/spec/fixtures/impl/writer_output.go b/spec/fixtures/impl/writer_output.go index 19e8f6e..b69a70c 100644 --- a/spec/fixtures/impl/writer_output.go +++ b/spec/fixtures/impl/writer_output.go @@ -5,4 +5,3 @@ type WriterTest2 struct{} func (w *WriterTest2) Write(p []byte) (n int, err error) { panic("not implemented") // TODO: Implement } -