Commit 68fe05a7 authored by Michael de Hoog's avatar Michael de Hoog

Fix missing interface method

parent a005a070
...@@ -97,7 +97,7 @@ type CLIConfig struct { ...@@ -97,7 +97,7 @@ type CLIConfig struct {
ApproxComprRatio float64 ApproxComprRatio float64
// CompressorKind is the compressor implementation to use. // CompressorKind is the compressor implementation to use.
CompressorKind CompressorKind CompressorKind flags.CompressorKind
Stopped bool Stopped bool
......
...@@ -24,6 +24,10 @@ func (s *nonCompressor) Close() error { ...@@ -24,6 +24,10 @@ func (s *nonCompressor) Close() error {
return nil return nil
} }
func (s *nonCompressor) FullErr() error {
return nil
}
func TestChannelOutAddBlock(t *testing.T) { func TestChannelOutAddBlock(t *testing.T) {
cout, err := NewChannelOut(&nonCompressor{}) cout, err := NewChannelOut(&nonCompressor{})
require.NoError(t, err) require.NoError(t, err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment