From dbda8afb77e98ad06c41492ee91e82cd8f878a0f Mon Sep 17 00:00:00 2001 From: gedi Date: Tue, 22 Nov 2016 20:09:53 +0200 Subject: [PATCH] fix examples based on recent changes --- README.md | 2 +- examples/godogs/godogs_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf21b7a..97682c7 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ import ( ) func TestMain(m *testing.M) { - status := godog.RunWithOptions(func(s *godog.Suite) { + status := godog.RunWithOptions("godogs", func(s *godog.Suite) { FeatureContext(s) }, godog.Options{ Format: "progress", diff --git a/examples/godogs/godogs_test.go b/examples/godogs/godogs_test.go index 130faab..6619e5e 100644 --- a/examples/godogs/godogs_test.go +++ b/examples/godogs/godogs_test.go @@ -10,7 +10,7 @@ import ( ) func TestMain(m *testing.M) { - status := godog.RunWithOptions(func(s *godog.Suite) { + status := godog.RunWithOptions("godogs", func(s *godog.Suite) { FeatureContext(s) }, godog.Options{ Format: "progress",