Skip to content
This repository has been archived by the owner on Feb 9, 2025. It is now read-only.

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
politza committed Dec 3, 2024
1 parent 4a1096c commit 218bf7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/Emil/test/Emil-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
(describe "quote"
(it "basic"
(expect (Emil:infer-type '(quote x))
:to-equal 'Any)))
:to-equal 'symbol)))

(describe "save-current-buffer"
(it "basic"
Expand Down
4 changes: 2 additions & 2 deletions packages/Emil/test/Emil/Transformer-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
'(Emil:Form:Catch
:tag (Emil:Form:Quote
:value tag
:type (Emil:Type:Any))
:type (Emil:Type:Basic :name symbol))
:body ((Emil:Form:Atom
:value 0
:type (Emil:Type:Basic :name integer)))
Expand Down Expand Up @@ -377,7 +377,7 @@
:to-equal
'(Emil:Form:Quote
:value x
:type (Emil:Type:Any)))))
:type (Emil:Type:Basic :name symbol)))))

(describe "save-current-buffer"
(it "basic"
Expand Down

0 comments on commit 218bf7e

Please sign in to comment.