From 5a587c64c0002fbb3b634ea1ca881625d6520f9d Mon Sep 17 00:00:00 2001 From: jolestar Date: Mon, 18 Jan 2016 22:50:02 +0800 Subject: [PATCH] fix TestSyncMapValues --- collections/collections_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/collections/collections_test.go b/collections/collections_test.go index 6792f49..afeae70 100644 --- a/collections/collections_test.go +++ b/collections/collections_test.go @@ -39,9 +39,6 @@ func TestSyncMapValues(t *testing.T) { m.Put(&key2, "value2") values := m.Values() assert.Equal(t, 2, len(values)) - assert.Equal(t, "value1", values[0]) - assert.Equal(t, "value2", values[1]) - } func TestSyncMapHashableObject(t *testing.T) {