fix close on closed socket_writer (#2748)

This commit is contained in:
Patrick Hemmer
2017-05-02 14:06:49 -04:00
committed by Daniel Nelson
parent b0a2e8e1bd
commit ce203dc687
2 changed files with 11 additions and 1 deletions

View File

@@ -143,7 +143,7 @@ func TestSocketWriter_Write_err(t *testing.T) {
// close the socket to generate an error
lconn.Close()
sw.Close()
sw.Conn.Close()
err = sw.Write(metrics)
require.Error(t, err)
assert.Nil(t, sw.Conn)