From d999c7b4d739ffa05d775a96c6f70ae77d5179f2 Mon Sep 17 00:00:00 2001 From: Aaron L Date: Mon, 8 Aug 2016 00:20:19 -0700 Subject: [PATCH] Fix failing test. - Let's not be smart about renames in Bind(), just do the normal thing and bind to whatever the user's asked us to. --- boil/reflect_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boil/reflect_test.go b/boil/reflect_test.go index 9bdb832..a71dad6 100644 --- a/boil/reflect_test.go +++ b/boil/reflect_test.go @@ -164,7 +164,7 @@ func TestBind_InnerJoinSelect(t *testing.T) { testResults := []*struct { Happy struct { ID int - } `boil:",bind"` + } `boil:"h,bind"` Fun struct { ID int } `boil:",bind"`