Commit 96ee10fb authored by Shawn Smith's avatar Shawn Smith Committed by Brad Fitzpatrick

reflect: add DeepEqual slice of slice inequality test

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/46510043
parent 2f5f1939
......@@ -678,6 +678,7 @@ var deepEqualTests = []DeepEqualTest{
{1, nil, false},
{fn1, fn3, false},
{fn3, fn3, false},
{[][]int{[]int{1}}, [][]int{[]int{2}}, false},
// Nil vs empty: not the same.
{[]int{}, []int(nil), false},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment