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 {
ApproxComprRatio float64
// CompressorKind is the compressor implementation to use.
CompressorKind CompressorKind
CompressorKind flags.CompressorKind
Stopped bool
......
......@@ -24,6 +24,10 @@ func (s *nonCompressor) Close() error {
return nil
}
func (s *nonCompressor) FullErr() error {
return nil
}
func TestChannelOutAddBlock(t *testing.T) {
cout, err := NewChannelOut(&nonCompressor{})
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