Skip to content

Commit

Permalink
chore: satisfy unused_qualifications lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Aug 12, 2024
1 parent 7339e59 commit e7fb872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions naga/src/valid/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ fn f64_runtime_literals() {
error,
crate::valid::ValidationError::Function {
source: super::FunctionError::Expression {
source: super::ExpressionError::Literal(super::LiteralError::Width(
source: ExpressionError::Literal(LiteralError::Width(
super::r#type::WidthError::MissingCapability {
name: "f64",
flag: "FLOAT64",
Expand Down Expand Up @@ -1777,7 +1777,7 @@ fn f64_const_literals() {
assert!(matches!(
error,
crate::valid::ValidationError::ConstExpression {
source: super::ConstExpressionError::Literal(super::LiteralError::Width(
source: ConstExpressionError::Literal(LiteralError::Width(
super::r#type::WidthError::MissingCapability {
name: "f64",
flag: "FLOAT64",
Expand Down

0 comments on commit e7fb872

Please sign in to comment.