From bb3c5111de4ef19e20d8d7ecebac30bd956deebc Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Fri, 28 Feb 2025 14:43:53 +0200 Subject: [PATCH] test: fix tests for gotests --- spec/fixtures/impl/closer_output.go | 1 - spec/fixtures/impl/reader_output.go | 1 - spec/fixtures/impl/writer_output.go | 1 - 3 files changed, 3 deletions(-) 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 } -