Explorar el Código

Update io_test.go

Darien Raymond hace 9 años
padre
commit
a2d8d55ba1
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      proxy/vmess/io/io_test.go

+ 2 - 0
proxy/vmess/io/io_test.go

@@ -32,6 +32,7 @@ func TestSingleIO(t *testing.T) {
 
 	writer := NewAuthChunkWriter(v2io.NewAdaptiveWriter(content))
 	writer.Write(alloc.NewBuffer().Clear().AppendString("abcd"))
+	writer.Write(alloc.NewBuffer().Clear())
 	writer.Release()
 
 	reader := NewAuthChunkReader(content)
@@ -90,6 +91,7 @@ func TestLargeIO(t *testing.T) {
 			break
 		}
 	}
+	writer.Write(alloc.NewBuffer().Clear())
 	writer.Release()
 
 	actualContent := make([]byte, 0, len(content))