From 4f4cd5e63573da4d6edcc7d4213afaca67c19f88 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Mon, 23 Nov 2015 15:53:48 -0800 Subject: upgrading libs --- .../src/github.com/braintree/manners/test_helpers/conn.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Godeps/_workspace/src/github.com/braintree/manners/test_helpers/conn.go (limited to 'Godeps/_workspace/src/github.com/braintree/manners/test_helpers/conn.go') diff --git a/Godeps/_workspace/src/github.com/braintree/manners/test_helpers/conn.go b/Godeps/_workspace/src/github.com/braintree/manners/test_helpers/conn.go new file mode 100644 index 000000000..8c610f58e --- /dev/null +++ b/Godeps/_workspace/src/github.com/braintree/manners/test_helpers/conn.go @@ -0,0 +1,13 @@ +package test_helpers + +import "net" + +type Conn struct { + net.Conn + CloseCalled bool +} + +func (c *Conn) Close() error { + c.CloseCalled = true + return nil +} -- cgit v1.2.3-1-g7c22