Skip to content

Commit e9d212d

Browse files
committed
Bless clippy tests.
1 parent 83a0d71 commit e9d212d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/clippy/tests/ui/author/macro_in_closure.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if let StmtKind::Let(local) = stmt.kind
3838
&& args2.len() == 2
3939
&& let ExprKind::Lit(ref lit) = args2[0].kind
4040
&& let LitKind::ByteStr(ref vec) = lit.node
41-
&& let [[128, 1, 10, 0]] = **vec
41+
&& let [[192, 1, 10, 0]] = **vec
4242
&& let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, inner1) = args2[1].kind
4343
&& block.expr.is_none()
4444
&& let PatKind::Binding(BindingMode::NONE, _, name2, None) = local.pat.kind

src/tools/clippy/tests/ui/author/macro_in_loop.stdout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if let Some(higher::ForLoop { pat: pat, arg: arg, body: body, .. }) = higher::Fo
4949
&& args2.len() == 2
5050
&& let ExprKind::Lit(ref lit2) = args2[0].kind
5151
&& let LitKind::ByteStr(ref vec) = lit2.node
52-
&& let [[128, 1, 10, 0]] = **vec
52+
&& let [[192, 1, 10, 0]] = **vec
5353
&& let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, inner1) = args2[1].kind
5454
&& block1.expr.is_none()
5555
&& block.expr.is_none()

0 commit comments

Comments
 (0)