浏览代码

fix build break

Darien Raymond 9 年之前
父节点
当前提交
7665dbff34
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      testing/assert/pointer.go

+ 1 - 1
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))
 	}
 }