We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tarpaulin reports the "let" line is not covered in the following code:
let I18nConfig { id, fallback, locales, } = init(); I18n::new(id, fallback, locales)
If the code is amended to:
let config = init(); I18n::new(config.id, config.fallback, config.locales)
the coverage is complete.
Expected behavior
Same code coverage for both scenarios
The text was updated successfully, but these errors were encountered:
xd009642
No branches or pull requests
Tarpaulin reports the "let" line is not covered in the following code:
If the code is amended to:
the coverage is complete.
Expected behavior
Same code coverage for both scenarios
The text was updated successfully, but these errors were encountered: