Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Main interfaces for test working are `provider.T` and `provider.StepCtx`.
| `Labels(labels ...allure.Label)` | Adds multiple allure labels |
| `ReplaceLabel(label allure.Label)` | Replace any label with same name as passed to argument |

:warning: **NOTE**: Some labels (such as `languange`, `host`, `framework`, etc) have default values and cannot be set
:warning: **NOTE**: Some labels (such as `language`, `host`, `framework`, etc) have default values and cannot be set
during test runtime any other way (`SystemLabels` interface) but ReplaceLabel method.

##### Link Methods (`Links` interface)
Expand Down
2 changes: 1 addition & 1 deletion pkg/framework/runner/suite_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func getParamTests(parentTest Test, params map[string]interface{}) map[string]Te
}
return res
}
panic(fmt.Sprintf("missing interface implementaion (parametrizedTest) for test: %s", parentTest.GetMeta().GetResult().Name))
panic(fmt.Sprintf("missing interface implementation (parametrizedTest) for test: %s", parentTest.GetMeta().GetResult().Name))
}

// getParams checks that the parameter extending the suite is of the slice type
Expand Down