From bfe70f3776f95c8c83debfde6ea754ab62a147d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernesto=20Jime=CC=81nez?= Date: Sat, 24 Sep 2016 19:52:00 +0100 Subject: [PATCH] Namespace suite flag `m` to `testify.m` --- suite/suite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite/suite.go b/suite/suite.go index f831e25..db74130 100644 --- a/suite/suite.go +++ b/suite/suite.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/require" ) -var matchMethod = flag.String("m", "", "regular expression to select tests of the suite to run") +var matchMethod = flag.String("testify.m", "", "regular expression to select tests of the testify suite to run") // Suite is a basic testing suite with methods for storing and // retrieving the current *testing.T context.