fixing the tests
This commit is contained in:
parent
87b602fc9f
commit
472da09f51
@ -1,4 +1,4 @@
|
||||
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
||||
|
||||
(def square (fn [arg]
|
||||
(* arg arg)))
|
||||
(defn square [arg]
|
||||
(return (* arg arg)))
|
||||
|
@ -1,10 +1,10 @@
|
||||
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
||||
|
||||
(import ["tests.lang.test_kwargs"])
|
||||
(import "tests.lang.test_kwargs")
|
||||
|
||||
(def kiwi (fn []
|
||||
(kwapply (tests.lang.test_kwargs.shim "one" "two") {
|
||||
(defn kiwi []
|
||||
(return (kwapply (tests.lang.test_kwargs.shim "one" "two") {
|
||||
"three" "three"
|
||||
"four" "four"
|
||||
})
|
||||
))
|
||||
}))
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user