From 622a656a5e727da5dd12d585bfe7042cc7f45710 Mon Sep 17 00:00:00 2001 From: Jacob McCann Date: Wed, 12 Feb 2020 10:07:44 -0600 Subject: [PATCH] refactor: test for generated commands --- plugin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_test.go b/plugin_test.go index eb14658..d14e770 100644 --- a/plugin_test.go +++ b/plugin_test.go @@ -94,7 +94,7 @@ func TestPlugin(t *testing.T) { } for _, tt := range tests { - g.Assert(tfApply(tt.args.config)).Equal(tt.want) + g.Assert(tfApply(tt.args.config).Args).Equal(tt.want.Args) } }) })