From 75cfbf67591ffe9c8a406572e71153a639379144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Paix=C3=A3o?= Date: Sat, 28 Nov 2020 21:04:39 -0300 Subject: [PATCH] Unused test struct removed --- v2/serialize_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/v2/serialize_test.go b/v2/serialize_test.go index 725398f..ec8f01a 100644 --- a/v2/serialize_test.go +++ b/v2/serialize_test.go @@ -181,10 +181,6 @@ func TestRawSerializeWithEmptyTagName(t *testing.T) { } } -type TestStructJSON struct { - A string `validate:"not_empty" json:"b"` -} - func TestRawSerializeWithJSONTagName(t *testing.T) { body := struct { A string `json:"b" validate:"not_empty"`