From 060dc3818316664ada923a908101a9ea4a082764 Mon Sep 17 00:00:00 2001 From: Mark Ayers Date: Mon, 18 Dec 2017 17:34:03 -0800 Subject: [PATCH] Update README.md add `godog.` to the second `TestMain` example to make it runnable. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dece164..8cee796 100644 --- a/README.md +++ b/README.md @@ -262,9 +262,9 @@ func TestMain(m *testing.M) { break } } - status := RunWithOptions("godog", func(s *Suite) { - SuiteContext(s) - }, Options{ + status := godog.RunWithOptions("godog", func(s *godog.Suite) { + godog.SuiteContext(s) + }, godog.Options{ Format: format, Paths: []string{"features"}, })