uefi/test-runner: Remove crate::
and uefi::
prefix from Status
#1714
+111
−97
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In many places, especially doc comments,
Status
was referred to asuefi::Status
orcrate::Status
. Consistently useStatus
instead, adding imports as needed. Note that in cases whereStatus
is only used in docstrings, theuse
is gated by#[cfg(doc)]
. (This avoids needing a bunch of manualStatus::*
links in docstrings.)This is mostly a mechanical find-replace change, except for adding imports where needed.
Parts of this change are also present in #1603 and #1705.
Checklist