reword TestProvider doc

This commit is contained in:
James Bardin 2017-03-08 17:41:35 -05:00
parent 38d2a8f6ac
commit 6fcb55d09e
1 changed files with 3 additions and 2 deletions

View File

@ -22,8 +22,9 @@ import (
const TestEnvVar = "TF_ACC"
// TestProvider is implemented by scheme.Provider to allow resetting the
// provider state between tests.
// TestProvider can be implemented by any ResourceProvider to provide custom
// reset functionality at the start of an acceptance test.
// The helper/schema Provider implements this interface.
type TestProvider interface {
TestReset() error
}