From 9493c6f08743b415ef10dfe850af0b1803c1278c Mon Sep 17 00:00:00 2001 From: simar7 <1254783+simar7@users.noreply.github.com> Date: Wed, 9 Aug 2023 03:07:45 -0600 Subject: [PATCH] test(cli): Fix assertion helptext (#4966) --- pkg/module/module_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/module/module_test.go b/pkg/module/module_test.go index 0964d3ef7328..581b7ca3ed55 100644 --- a/pkg/module/module_test.go +++ b/pkg/module/module_test.go @@ -102,7 +102,7 @@ func TestManager_Register(t *testing.T) { }) require.NoError(t, err) // WASM modules must be generated before running the tests. - require.Equal(t, count, 3, "missing WASM modules, try 'make test' or 'make generate-test-modules'") + require.Equal(t, count, 3, "missing WASM modules, try 'mage test:unit' or 'mage test:generateModules'") for _, tt := range tests { t.Run(tt.name, func(t *testing.T) {