Fix vc test for RCS
* test/lisp/vc/vc-tests.el (vc-test--rename-file): Fix test for RCS.
This commit is contained in:
parent
5bd23b0cd3
commit
7c7d58f454
1 changed files with 4 additions and 1 deletions
|
@ -588,7 +588,10 @@ This checks also `vc-backend' and `vc-responsible-backend'."
|
|||
(should (not (file-exists-p tmp-name)))
|
||||
(should (file-exists-p new-name))
|
||||
|
||||
(should (equal (vc-state new-name) 'added))))
|
||||
(should (equal (vc-state new-name)
|
||||
(if (eq backend 'RCS)
|
||||
'up-to-date
|
||||
'added)))))
|
||||
|
||||
;; Save exit.
|
||||
(ignore-errors
|
||||
|
|
Loading…
Add table
Reference in a new issue