From c8f08097f556d49ac0e66446f0cc5a36441464cf Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Sat, 25 Jul 2020 12:26:54 +0000 Subject: [PATCH] create a failing subtree --- tea_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tea_test.go b/tea_test.go index 11e39df..834f3f3 100644 --- a/tea_test.go +++ b/tea_test.go @@ -51,9 +51,9 @@ func TestThing(t *testing.T) { } { - test := root.Child(&setKey{key: "b ob", value: "banana"}) - test = test.Child(&setKey{key: "car-el", value: "cherry"}) - test = test.Child(&setKey{key: "dave", value: "durian"}) + bob := root.Child(&setKey{key: "b ob", value: "banana"}) + bob.Child(&setKey{key: "car-el", value: "cherry"}) + bob.Child(&setKey{key: "dave", value: "durian"}) } {