From be704a5c57bbe6a1169530127c5e4d91e026162a Mon Sep 17 00:00:00 2001 From: praveen shukla Date: Tue, 20 Oct 2015 10:44:48 +0530 Subject: [PATCH] corrected the README documentation of suite package --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f57561..07fb92a 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ func (suite *ExampleTestSuite) SetupTest() { // All methods that begin with "Test" are run as tests within a // suite. func (suite *ExampleTestSuite) TestExample() { - assert.Equal(suite.T(), suite.VariableThatShouldStartAtFive, 5) + assert.Equal(suite.T(), 5, suite.VariableThatShouldStartAtFive) } // In order for 'go test' to run this suite, we need to create