From 63114a80e749c43cb29304844e7c889676eeeb3a Mon Sep 17 00:00:00 2001 From: Magic Len Date: Sat, 1 Jun 2024 13:54:12 +0800 Subject: [PATCH] fix the `bound_4` test case in `partial_ord_struct` --- tests/partial_ord_struct.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/partial_ord_struct.rs b/tests/partial_ord_struct.rs index b84a862..f6cc428 100644 --- a/tests/partial_ord_struct.rs +++ b/tests/partial_ord_struct.rs @@ -550,7 +550,7 @@ fn bound_4() { } #[derive(Educe)] - #[educe(Eq)] + #[educe(PartialOrd)] struct Tuple(T, PhantomData); impl PartialEq for Tuple {