You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting a bug report.
What version of godog are you using?
GO111MODULE=on go get github.com/cucumber/godog/cmd/godog
> godog -version
Godog version is: v0.8.1
What version of Go are you using?
> go version
go version go1.13.1 linux/amd64
What did you do?
If possible, provide a recipe for reproducing the error.
git checkout master
denis@x220:/p/godog$ cd _examples/api/
denis@x220:/p/godog/_examples/api$ godog
What did you expect to see?
2 scenarios (2 passed)
What did you see instead?
Scenario: should get version number # features/version.feature:17
When I send "GET" request to "/version" # api_test.go:22 -> *apiFeature
Then the response code should be 200 # api_test.go:47 -> *apiFeature
And the response should match json: # api_test.go:54 -> *apiFeature
"""
{
"version": "v0.7.14"
}
"""
expected JSON does not match actual, map[version:v0.7.14] vs. map[version:v0.8.1]
--- Failed steps:
Scenario: should get version number # features/version.feature:17
And the response should match json: # features/version.feature:20
Error: expected JSON does not match actual, map[version:v0.7.14] vs. map[version:v0.8.1]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Please answer these questions before submitting a bug report.
What version of godog are you using?
What version of Go are you using?
What did you do?
If possible, provide a recipe for reproducing the error.
git checkout master
denis@x220:
/p/godog$ cd _examples/api//p/godog/_examples/api$ godogdenis@x220:
What did you expect to see?
2 scenarios (2 passed)
What did you see instead?
Scenario: should get version number # features/version.feature:17
When I send "GET" request to "/version" # api_test.go:22 -> *apiFeature
Then the response code should be 200 # api_test.go:47 -> *apiFeature
And the response should match json: # api_test.go:54 -> *apiFeature
"""
{
"version": "v0.7.14"
}
"""
expected JSON does not match actual, map[version:v0.7.14] vs. map[version:v0.8.1]
--- Failed steps:
Scenario: should get version number # features/version.feature:17
And the response should match json: # features/version.feature:20
Error: expected JSON does not match actual, map[version:v0.7.14] vs. map[version:v0.8.1]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: