Skip to content

Commit

Permalink
Fix typo in spqr_test.go (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
EinKrebs committed Aug 25, 2023
1 parent fee1195 commit 71627ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/feature/spqr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -764,11 +764,11 @@ func InitializeScenario(s *godog.ScenarioContext, t *testing.T) {

func TestSpqr(t *testing.T) {
features := "features"
if feauterEnv, ok := os.LookupEnv("GODOG_FEATURE"); ok {
if !strings.HasSuffix(feauterEnv, ".feature") {
feauterEnv += ".feature"
if featureEnv, ok := os.LookupEnv("GODOG_FEATURE"); ok {
if !strings.HasSuffix(featureEnv, ".feature") {
featureEnv += ".feature"
}
features = fmt.Sprintf("features/%s", feauterEnv)
features = fmt.Sprintf("features/%s", featureEnv)
}
suite := godog.TestSuite{
ScenarioInitializer: func(s *godog.ScenarioContext) {
Expand Down

0 comments on commit 71627ec

Please sign in to comment.