From 7665dbff34dd23a1cf04b77c9a21373379811c45 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Wed, 7 Dec 2016 00:31:08 +0100 Subject: [PATCH] fix build break --- testing/assert/pointer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/assert/pointer.go b/testing/assert/pointer.go index 1b3013a22..9bf8ef991 100644 --- a/testing/assert/pointer.go +++ b/testing/assert/pointer.go @@ -23,7 +23,7 @@ type PointerSubject struct { func (subject *PointerSubject) Equals(expectation interface{}) { if subject.value != expectation { - subject.Fail("is equal to", serial.PointerToString(expectation)) + subject.Fail("is equal to", serial.ToString(expectation)) } }