Skip to content
Merged
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 moz-webgpu-cts/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ fn run(cli: Cli) -> ExitCode {
Subcommand::Triage { on_zero_item } => {
#[derive(Debug)]
struct TaggedTest {
#[allow(unused)]
#[expect(unused)]
orig_path: Arc<PathBuf>,
inner: Test,
}
Expand Down
3 changes: 1 addition & 2 deletions moz-webgpu-cts/src/process_reports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ pub(crate) struct ProcessReportsArgs<'a> {
}

#[derive(Clone, Copy, Debug)]
#[allow(clippy::enum_variant_names)]
pub(crate) enum ReportProcessingPreset {
ResetContradictoryOutcomes,
MergeOutcomes,
Expand Down Expand Up @@ -108,7 +107,7 @@ fn accumulate<Out>(
///
/// For subtests, `parent_implementation_status` should be specified so the
/// parent test's implementation status can be used for filtering.
#[allow(clippy::type_complexity)]
#[expect(clippy::type_complexity)]
fn reconcile<Out>(
meta_props: &mut TestProps<Out>,
reported: NonNormalizedPropertyValue<Expected<Out>>,
Expand Down
2 changes: 1 addition & 1 deletion moz-webgpu-cts/src/wpt/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl metadata::File<'_> for File {
#[derive(Clone, Debug, Default, Serialize)]
pub struct FileProps {
pub is_disabled: Option<PropertyValue<Expr<Value<'static>>, String>>,
#[allow(clippy::type_complexity)]
#[expect(clippy::type_complexity)]
pub prefs: Option<PropertyValue<Expr<Value<'static>>, Vec<(String, String)>>>,
pub tags: Option<PropertyValue<Expr<Value<'static>>, Vec<String>>>,
pub implementation_status: Option<PropertyValue<Expr<Value<'static>>, ImplementationStatus>>,
Expand Down
Loading