Skip to content

Commit 31442e8

Browse files
committed
fix tests
1 parent eca8630 commit 31442e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/tactics/tactics_test.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Qed.
319319
Lemma lem_lst5 : forall (A : Type) (l l' : list A), List.NoDup (l ++ l') -> List.NoDup l.
320320
Proof.
321321
induction l'.
322-
- hauto using (@Lists.List.app_nil_end).
322+
- hauto using (@Lists.List.app_nil_r).
323323
- hauto using (@Lists.List.NoDup_remove_1).
324324
Qed.
325325

@@ -1419,7 +1419,7 @@ Definition eq_dec {A} {dto : DecTotalOrder A} : forall x y : A, {x = y}+{x <> y}
14191419
intros x y.
14201420
sdestruct (leb x y).
14211421
- sdestruct (leb y x).
1422-
+ auto using leb_antisym.
1422+
+ firstorder using leb_antisym.
14231423
+ sauto.
14241424
- sdestruct (leb y x).
14251425
+ sauto.

0 commit comments

Comments
 (0)